diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-09 12:06:07 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-09 12:06:07 +0200 |
commit | efc9870fb1ddd286954fc056b79dddf39f68353a (patch) | |
tree | 9d70895971460be7c58b434a54fe49c51153da0a /main/main.cpp | |
parent | cee744e2bd419c0fc47f2b8bb315f183929d1113 (diff) |
freertos + lwip compile working
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 4 |
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(); } |