diff options
Diffstat (limited to 'puzzle/dummy/main.cpp')
-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"); } |