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
Improve wording and replace "watchface" by "watch face" in Apps.md.
Improve CMake readability regarding watch face selection
Co-authored-by: Reinhold Gschweicher <pyro4hell@gmail.com>
Copy file name to clipboardexpand all lines: doc/code/Apps.md
+13-12
Original file line number
Diff line number
Diff line change
@@ -35,20 +35,20 @@ that will call the method `Refresh()` periodically.
35
35
36
36
## App types
37
37
38
-
There are basically 3 types of applications : **system** apps and **user** apps and **watchfaces**.
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
+
The watch faces, 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
-
**Watchfaces** are very similar to the **user** apps, they are optional, but at least one 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
46
47
-
The distinction between **system** apps, **user** apps and watchfaces allows for more flexibility and customization.
48
-
This allows to easily select which user applications and watchfaces must be built into the firmware
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
49
49
without overflowing the system memory.
50
50
51
-
## Apps and watchfaces initialization
51
+
## Apps and watch faces initialization
52
52
53
53
Apps are created by `DisplayApp` in `DisplayApp::LoadScreen()`.
54
54
This method simply call the creates an instance of the class that corresponds to the app specified in parameters.
@@ -57,7 +57,7 @@ The constructor of **system** apps is called directly. If the application is a *
57
57
the corresponding `AppDescription` is first retrieved from `userApps`
58
58
and then the function `create` is called to create an instance of the app.
59
59
60
-
Watchfaces are handled in a very similar way than the **user** apps : they are created by `DisplayApp` in the method `DisplayApp::LoadScreen()` when the application type is `Apps::Clock`.
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`.
Similarly, the list of watchfaces is also generated by CMake, so you need to add the variable `ENABLE_WATCHFACES` to the command line of CMake. It must be set with the list of watchfaces that will be built into the firmware.
201
+
Similarly, the list of watch faces is also generated by CMake, so you need to add the variable `ENABLE_WATCHFACES` to the command line of CMake.
202
+
It must be set with the comma separated list of watch faces that will be built into the firmware.
202
203
203
-
Ex: build the firmware with 3 watchfaces : Analog, PineTimeStyle and Infineat:
204
+
Ex: build the firmware with 3 watch faces : Analog, PineTimeStyle and Infineat:
Copy file name to clipboardexpand all lines: src/displayapp/apps/CMakeLists.txt
+7-1
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,13 @@ endif ()
20
20
if(DEFINED ENABLE_WATCHFACES)
21
21
set(WATCHFACE_TYPES ${ENABLE_WATCHFACES}CACHESTRING"List of watch faces to build into the firmware")
22
22
else()
23
-
set(WATCHFACE_TYPES "WatchFace::Digital, WatchFace::Analog, WatchFace::PineTimeStyle, WatchFace::Terminal, WatchFace::Infineat, WatchFace::CasioStyleG7710"CACHESTRING"List of watch faces to build into the firmware")
0 commit comments