aboutsummaryrefslogtreecommitdiff
path: root/stm32f091/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'stm32f091/main.c')
-rw-r--r--stm32f091/main.c5
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();
}