mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
/*! \file applist.h
|
|
\brief Table of all active applications. Add yours here.
|
|
*/
|
|
|
|
#include "apps/submenu.h"
|
|
|
|
extern const struct app setting_applet;
|
|
extern const struct app clock_applet;
|
|
|
|
//Non-radio apps first.
|
|
#include "apps/clock.h"
|
|
#include "apps/settime.h"
|
|
#include "apps/alarm.h"
|
|
#include "apps/stopwatch.h"
|
|
#include "apps/calibrate.h"
|
|
#include "apps/rpn.h"
|
|
#include "apps/hex.h"
|
|
#include "apps/phrase.h"
|
|
#include "apps/rngapp.h"
|
|
#include "apps/shabbat.h"
|
|
|
|
//Then radio apps.
|
|
#include "apps/morse.h"
|
|
#include "apps/tuner.h"
|
|
#include "apps/beacon.h"
|
|
#include "apps/ook.h"
|
|
#include "apps/counter.h"
|
|
|
|
|
|
/* For each application, the init() function is called at entry. The
|
|
draw() function is called four times per second. The exit()
|
|
function is called when the mode button is pressed, but returns 1
|
|
to reject a mode switch or 0 to allow it.
|
|
*/
|
|
extern const struct app apps[];
|
|
|
|
/* Because we had too many applications in the main menu, it became
|
|
necessary to break them out into a submenu. These behave just like
|
|
the main menu once selected.
|
|
*/
|
|
extern const struct app subapps[];
|