@@ -38,7 +38,8 @@ SystemInfo::SystemInfo(Pinetime::Applications::DisplayApp* app,
38
38
const Pinetime::Controllers::Ble& bleController,
39
39
const Pinetime::Drivers::Watchdog& watchdog,
40
40
Pinetime::Controllers::MotionController& motionController,
41
- const Pinetime::Drivers::Cst816S& touchPanel)
41
+ const Pinetime::Drivers::Cst816S& touchPanel,
42
+ const Pinetime::Drivers::SpiNorFlash& spiNorFlash)
42
43
: app {app},
43
44
dateTimeController {dateTimeController},
44
45
batteryController {batteryController},
@@ -47,6 +48,7 @@ SystemInfo::SystemInfo(Pinetime::Applications::DisplayApp* app,
47
48
watchdog {watchdog},
48
49
motionController {motionController},
49
50
touchPanel {touchPanel},
51
+ spiNorFlash {spiNorFlash},
50
52
screens {app,
51
53
0 ,
52
54
{[this ]() -> std::unique_ptr<Screen> {
@@ -186,10 +188,12 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
186
188
lv_obj_t * label = lv_label_create (lv_scr_act (), nullptr );
187
189
lv_label_set_recolor (label, true );
188
190
const auto & bleAddr = bleController.Address ();
191
+ auto spiFlashId = spiNorFlash.GetIdentification ();
189
192
lv_label_set_text_fmt (label,
190
193
" #808080 BLE MAC#\n "
191
- " %02x:%02x:%02x:%02x:%02x:%02x"
194
+ " %02x:%02x:%02x:%02x:%02x:%02x\n "
192
195
" \n "
196
+ " #808080 SPI Flash# %02x-%02x-%02x\n "
193
197
" \n "
194
198
" #808080 Memory heap#\n "
195
199
" #808080 Free# %d\n "
@@ -202,6 +206,9 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
202
206
bleAddr[2 ],
203
207
bleAddr[1 ],
204
208
bleAddr[0 ],
209
+ spiFlashId.manufacturer ,
210
+ spiFlashId.type ,
211
+ spiFlashId.density ,
205
212
xPortGetFreeHeapSize (),
206
213
xPortGetMinimumEverFreeHeapSize (),
207
214
mallocFailedCount,
0 commit comments