diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-27 17:42:54 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-27 17:42:54 +0200 |
commit | dd1d0cf34a44f70793dcb52fd9ef90d9274b55d1 (patch) | |
tree | a88d6a1161c4a14aa7387a976bdd1833f029f077 /stm32f091/main.c | |
parent | 12704850c9f4cf7410ecf85116da9d23fc2ce6d6 (diff) |
move esp setup to setup.c
Diffstat (limited to 'stm32f091/main.c')
-rw-r--r-- | stm32f091/main.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/stm32f091/main.c b/stm32f091/main.c index 80eb5a7..67c0a8d 100644 --- a/stm32f091/main.c +++ b/stm32f091/main.c @@ -6,11 +6,8 @@ #include "setup.h" #include "sensor.h" -#include "test.h" - int main() { ws_io_setup(); - // xTaskCreate(ws_sensor_read_task, "sensor", 64, NULL, 1, NULL); - xTaskCreate(ws_test_write_task, "test", 16, NULL, 2, NULL); + xTaskCreate(ws_sensor_read_task, "sensor", 64, NULL, 1, NULL); vTaskStartScheduler(); } |