aboutsummaryrefslogtreecommitdiff
path: root/stm32f091/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'stm32f091/main.c')
-rw-r--r--stm32f091/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/stm32f091/main.c b/stm32f091/main.c
index ed0dacd..f5fe563 100644
--- a/stm32f091/main.c
+++ b/stm32f091/main.c
@@ -6,8 +6,12 @@
#include "setup.h"
#include "sensor.h"
+#include "test.h"
+
int main() {
ws_io_setup();
- xTaskCreate(ws_sensor_read_task, "sensor", 128, NULL, 1, NULL);
+ // xTaskCreate(ws_sensor_read_task, "sensor", 64, NULL, 1, NULL);
+ xTaskCreate(ws_test_write_task, "testw", 16, NULL, 2, NULL);
+ xTaskCreate(ws_test_read_task, "testr", 16, NULL, 2, NULL);
vTaskStartScheduler();
}