1
0
forked from me/IronOS

Fixing import loop

This commit is contained in:
Ben V. Brown
2023-06-29 20:26:00 +10:00
parent 7535a64bc7
commit c31fb5725b
10 changed files with 62 additions and 42 deletions

View File

@@ -1,4 +1,8 @@
#include "UI.h"
void ui_render_screen(Screen_t *screen, ScreenContext_t *context) {
// Basically switch out the handlers
#include "OLED.hpp"
void ui_render_screen(screenLayout_t *screen, ScreenContext_t *context) {
// Walk the struct associated to the screen, calling render for each element of the screen
// Then start OLED refresh
OLED::refresh();
}