You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/code/Apps.md
+44-5
Original file line number
Diff line number
Diff line change
@@ -35,18 +35,20 @@ that will call the method `Refresh()` periodically.
35
35
36
36
## App types
37
37
38
-
There are basically 2 types of applications : **system** apps and **user** apps.
38
+
There are basically 3 types of applications : **system** apps and **user** apps and **watch faces**.
39
39
40
40
**System** applications are always built into InfiniTime, and InfiniTime cannot work properly without those apps.
41
-
The watchfaces, settings, notifications and the application launcher are examples of such system applications.
41
+
Settings, notifications and the application launcher are examples of such system applications.
42
42
43
43
**User** applications are optionally built into the firmware. They extend the functionalities of the system.
44
44
45
-
The distinction between **system** and **user** applications allows for more flexibility and customization.
46
-
This allows to easily select which user applications must be built into the firmware
45
+
**Watch faces** are very similar to the **user** apps, they are optional, but at least one must be built into the firmware.
46
+
47
+
The distinction between **system** apps, **user** apps and watch faces allows for more flexibility and customization.
48
+
This allows to easily select which user applications and watch faces must be built into the firmware
47
49
without overflowing the system memory.
48
50
49
-
## Apps initialization
51
+
## Apps and watch faces initialization
50
52
51
53
Apps are created by `DisplayApp` in `DisplayApp::LoadScreen()`.
52
54
This method simply call the creates an instance of the class that corresponds to the app specified in parameters.
@@ -55,6 +57,8 @@ The constructor of **system** apps is called directly. If the application is a *
55
57
the corresponding `AppDescription` is first retrieved from `userApps`
56
58
and then the function `create` is called to create an instance of the app.
57
59
60
+
Watch faces are handled in a very similar way as the **user** apps : they are created by `DisplayApp` in the method `DisplayApp::LoadScreen()` when the application type is `Apps::Clock`.
61
+
58
62
## User application selection at build time
59
63
60
64
The list of user applications is generated at build time by the `consteval` function `CreateAppDescriptions()`
Copy file name to clipboardexpand all lines: src/displayapp/apps/CMakeLists.txt
+26-1
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,34 @@
1
1
if(DEFINED ENABLE_USERAPPS)
2
2
set(USERAPP_TYPES ${ENABLE_USERAPPS}CACHESTRING"List of user apps to build into the firmware")
3
3
else ()
4
-
set(USERAPP_TYPES "Apps::Navigation, Apps::StopWatch, Apps::Alarm, Apps::Timer, Apps::Steps, Apps::Motion, Apps::HeartRate, Apps::Music, Apps::Paint, Apps::Paddle, Apps::Twos, Apps::Metronome"CACHESTRING"List of user apps to build into the firmware")
0 commit comments