goodwatch/firmware/applist.h

15 lines
370 B
C
Raw Normal View History

/*
Each of these function pointers is called four times per second.
*/
static struct app apps[]={
//Clock
{.init=clock_init, .draw=clock_draw, .exit=clock_exit},
//RPN Calculator
{.init=rpn_init, .draw=rpn_draw, .exit=rpn_exit},
//Hex Viewer.
{.init=hex_init, .draw=hex_draw, .exit=hex_exit},
//End on null entry.
{.init=0, .draw=0, .exit=0}
};