We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5744345 commit 7b75ca5Copy full SHA for 7b75ca5
2 files changed
src/displayapp/screens/SystemInfo.cpp
@@ -20,6 +20,8 @@ namespace {
20
return "BMA421";
21
case Pinetime::Controllers::MotionController::DeviceTypes::BMA425:
22
return "BMA425";
23
+ case Pinetime::Controllers::MotionController::DeviceTypes::Unknown:
24
+ return "???";
25
}
26
return "???";
27
src/libs/lv_conf.h
@@ -295,6 +295,7 @@ typedef void* lv_img_decoder_user_data_t;
295
#define LV_TICK_CUSTOM 1
296
#if LV_TICK_CUSTOM == 1
297
#define LV_TICK_CUSTOM_INCLUDE "FreeRTOS.h" /*Header for the system time function*/
298
+uint32_t xTaskGetTickCount(); /*Forward declare to avoid compiler warning*/
299
#define LV_TICK_CUSTOM_SYS_TIME_EXPR (xTaskGetTickCount()) /*Expression evaluating to current system time in ms*/
300
#endif /*LV_TICK_CUSTOM*/
301
0 commit comments