Skip to content

Commit 25b3e24

Browse files
JF002NeroBurner
andcommitted
CMake watch faces selection
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>
1 parent 72c992c commit 25b3e24

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

doc/code/Apps.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,20 @@ that will call the method `Refresh()` periodically.
3535

3636
## App types
3737

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**.
3939

4040
**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.
4242

4343
**User** applications are optionally built into the firmware. They extend the functionalities of the system.
4444

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.
4646

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
4949
without overflowing the system memory.
5050

51-
## Apps and watchfaces initialization
51+
## Apps and watch faces initialization
5252

5353
Apps are created by `DisplayApp` in `DisplayApp::LoadScreen()`.
5454
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 *
5757
the corresponding `AppDescription` is first retrieved from `userApps`
5858
and then the function `create` is called to create an instance of the app.
5959

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`.
6161

6262
## User application selection at build time
6363

@@ -89,11 +89,11 @@ struct AppTraits<Apps::Alarm> {
8989
This array `userApps` is used by `DisplayApp` to create the applications and the `AppLauncher`
9090
to list all available applications.
9191
92-
## Watchface selection at build time
92+
## Watch face selection at build time
9393
94-
The list of available watchface is also generated at build time by the `consteval`
94+
The list of available watch faces is also generated at build time by the `consteval`
9595
function `CreateWatchFaceDescriptions()` in `UserApps.h` in the same way as the **user** apps.
96-
Watchfaces must declare a `WatchFaceTraits` so that the corresponding `WatchFaceDescription` can be generated.
96+
Watch faces must declare a `WatchFaceTraits` so that the corresponding `WatchFaceDescription` can be generated.
9797
Here is an example of `WatchFaceTraits`:
9898
```c++
9999
template <>
@@ -198,9 +198,10 @@ Ex : build the firmware with 3 user application : Alarm, Timer and MyApp (the ap
198198
$ cmake ... -DENABLE_USERAPPS="Apps::Alarm, Apps::Timer, Apps::MyApp" ...
199199
```
200200

201-
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.
202203

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:
204205

205206
```cmake
206207
$ cmake ... -DENABLE_WATCHFACES="WatchFace::Analog,WatchFace::PineTimeStyle,WatchFace::Infineat" ...

src/displayapp/apps/CMakeLists.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ endif ()
2020
if(DEFINED ENABLE_WATCHFACES)
2121
set(WATCHFACE_TYPES ${ENABLE_WATCHFACES} CACHE STRING "List of watch faces to build into the firmware")
2222
else()
23-
set(WATCHFACE_TYPES "WatchFace::Digital, WatchFace::Analog, WatchFace::PineTimeStyle, WatchFace::Terminal, WatchFace::Infineat, WatchFace::CasioStyleG7710" CACHE STRING "List of watch faces to build into the firmware")
23+
set(DEFAULT_WATCHFACE_TYPES "WatchFace::Digital")
24+
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Analog")
25+
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::PineTimeStyle")
26+
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Terminal")
27+
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Infineat")
28+
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::CasioStyleG7710")
29+
set(WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}" CACHE STRING "List of watch faces to build into the firmware")
2430
endif()
2531

2632
add_library(infinitime_apps INTERFACE)

0 commit comments

Comments
 (0)