Fixed library error

This commit is contained in:
Matthias Mitscherlich
2023-01-20 19:09:10 +01:00
parent 03d0c977d4
commit c230138e27
6 changed files with 34 additions and 16 deletions
+8 -1
View File
@@ -42,6 +42,7 @@
#include "clock.h"
#include "wordmap.h"
// --------------------------------------------------------------------------------------------------------------------
// Constant and macro definitions
// --------------------------------------------------------------------------------------------------------------------
@@ -49,6 +50,7 @@
#define RMT_LED_STRIP_RESOLUTION_HZ 10000000 // 10MHz resolution, 1 tick = 0.1us (led strip needs a high resolution)
#define RMT_LED_STRIP_GPIO_NUM 0
// --------------------------------------------------------------------------------------------------------------------
// Type definitions
// --------------------------------------------------------------------------------------------------------------------
@@ -144,7 +146,12 @@ extern "C" void app_main(void)
//
Logger logger(10, uartPort);
LOGGER_DEBUG("Let's start the WORDCLOCK");
LOGGER_PRINT("-----------------------------------------------------------------------");
LOGGER_PRINT("System Start");
LOGGER_PRINT("");
LOGGER_PRINT("WordClock");
LOGGER_PRINT("Release: %f", RELEASE);
LOGGER_PRINT("Compiled on %d %d", __TIME__, __DATE__);
//--------------------------------------------