-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathapplist.h
More file actions
49 lines (43 loc) · 1.3 KB
/
Copy pathapplist.h
File metadata and controls
49 lines (43 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*! \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/countdown.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"
#include "apps/hebrew.h"
#include "apps/dmesg.h"
#include "apps/beats.h"
#include "apps/phonebook.h"
//Then radio apps.
#include "apps/morse.h"
#include "apps/tuner.h"
#include "apps/beacon.h"
#include "apps/ook.h"
#include "apps/shaders.h"
#include "apps/counter.h"
#include "apps/pager.h"
#include "apps/jukebox.h"
#include "apps/ota_update.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[];