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
The list of watch face to build into the firmware is now set by CMake (-DENABLE_WATCHFACES).
Fix SettingWatchFace : convert to index to/from WatchFace when needed.
Copy file name to clipboardexpand all lines: src/displayapp/apps/CMakeLists.txt
+6
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,12 @@ else ()
17
17
set(USERAPP_TYPES "${DEFAULT_USER_APP_TYPES}"CACHESTRING"List of user apps to build into the firmware")
18
18
endif ()
19
19
20
+
if(DEFINED ENABLE_WATCHFACES)
21
+
set(WATCHFACE_TYPES ${ENABLE_WATCHFACES}CACHESTRING"List of watch faces to build into the firmware")
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