* Refactor of UITask, moved to /ui-new

Dieser Commit ist enthalten in:
Scott Powell
2025-08-16 20:04:54 +10:00
Ursprung 29fd5da5e8
Commit acde9921b5
9 geänderte Dateien mit 86 neuen und 101 gelöschten Zeilen
+9 -4
Datei anzeigen
@@ -75,14 +75,19 @@ static uint32_t _atoi(const char* sp) {
#endif
/* GLOBAL OBJECTS */
StdRNG fast_rng;
SimpleMeshTables tables;
MyMesh the_mesh(radio_driver, fast_rng, rtc_clock, tables, store);
#ifdef DISPLAY_CLASS
#include "UITask.h"
UITask ui_task(&board, &serial_interface);
#endif
StdRNG fast_rng;
SimpleMeshTables tables;
MyMesh the_mesh(radio_driver, fast_rng, rtc_clock, tables, store
#ifdef DISPLAY_CLASS
, &ui_task
#endif
);
/* END GLOBAL OBJECTS */
void halt() {