build-hal: add RENDERBUG_HAL define, fix logging output

This commit is contained in:
Torrie Fischer
2023-12-23 11:02:32 +01:00
parent 5bb29cc59c
commit 04bdf5323c
3 changed files with 5 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ typedef enum {
HAL_ESP8266
} HalBackend;
constexpr HalBackend DefaultBackend = HAL_ESP8266;
constexpr HalBackend DefaultBackend = RENDERBUG_HAL;
template<HalBackend Backend = DefaultBackend>
class PlatformImpl {