aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/src/hw/hw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/src/hw/hw.cpp')
-rw-r--r--src/core/src/hw/hw.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/src/hw/hw.cpp b/src/core/src/hw/hw.cpp
index 3e4f2c43..50001c87 100644
--- a/src/core/src/hw/hw.cpp
+++ b/src/core/src/hw/hw.cpp
@@ -24,6 +24,7 @@
#include "log.h"
#include "hw/hw.h"
+#include "hw/hw_lcd.h"
namespace HW {
@@ -49,8 +50,14 @@ template void Write<const u32>(u32 addr, const u32 data);
template void Write<const u16>(u32 addr, const u16 data);
template void Write<const u8>(u32 addr, const u8 data);
+/// Update hardware
+void Update() {
+ LCD::Update();
+}
+
/// Initialize hardware
void Init() {
+ LCD::Init();
NOTICE_LOG(HW, "Hardware initialized OK");
}