diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-15 14:15:36 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-15 14:15:36 +0200 |
commit | b9599d6cbaf924b2c9f73511d5c7604ed57a755d (patch) | |
tree | 941a5e91ec460c5dcee9ddd4b72ad5cd1223d978 /puzzle | |
parent | 20f442e5f5aa6a4fcf07f65e2f446a3c0ff8e4f2 (diff) |
compiling works again :cry:
Diffstat (limited to 'puzzle')
-rw-r--r-- | puzzle/dummy/main.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/puzzle/dummy/main.cpp b/puzzle/dummy/main.cpp index ddf3bf0..61c7b5b 100644 --- a/puzzle/dummy/main.cpp +++ b/puzzle/dummy/main.cpp @@ -4,7 +4,6 @@ #include <FreeRTOS.h> #include <task.h> -#include "drv/arduino/mod.h" #include "pb-mod.h" const char * PB_MOD_NAME = "dummy"; @@ -19,8 +18,6 @@ void testTask() { void setup() { Serial.begin(115200); - Serial.write("setup called\r\n"); xTaskCreate((TaskFunction_t) testTask, "test", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL); - Serial.write("setup done\r\n"); } |