aboutsummaryrefslogtreecommitdiff
path: root/main/main.cpp
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-05-09 12:06:07 +0200
committerlonkaars <loek@pipeframe.xyz>2024-05-09 12:06:07 +0200
commitefc9870fb1ddd286954fc056b79dddf39f68353a (patch)
tree9d70895971460be7c58b434a54fe49c51153da0a /main/main.cpp
parentcee744e2bd419c0fc47f2b8bb315f183929d1113 (diff)
freertos + lwip compile working
Diffstat (limited to 'main/main.cpp')
-rw-r--r--main/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/main.cpp b/main/main.cpp
index d9d5e56..ace9f01 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -31,7 +31,7 @@ int main() {
// this should compile but not work
lwip_socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
- // xTaskCreate((TaskFunction_t) blink_task, "blink", 128, NULL, 1, NULL);
- // vTaskStartScheduler();
+ xTaskCreate((TaskFunction_t) blink_task, "blink", 128, NULL, 1, NULL);
+ vTaskStartScheduler();
}