aboutsummaryrefslogtreecommitdiff
path: root/stm32f091/main.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-10-25 18:08:28 +0200
committerlonkaars <loek@pipeframe.xyz>2022-10-25 18:12:54 +0200
commit7a1316483ff8962f581d686f4e812c7ec5a2b6cc (patch)
treea17ac10d556574fc23369736ed6782ebe907f2e4 /stm32f091/main.c
parent931b357fee219f7d69e3b2e1c5c275413de6010b (diff)
finish merge
Diffstat (limited to 'stm32f091/main.c')
-rw-r--r--stm32f091/main.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/stm32f091/main.c b/stm32f091/main.c
index 7cb0718..ed0dacd 100644
--- a/stm32f091/main.c
+++ b/stm32f091/main.c
@@ -5,18 +5,9 @@
#include "main.h"
#include "setup.h"
#include "sensor.h"
-#include "backlog.h"
int main() {
ws_io_setup();
- HAL_GPIO_Init(GPIOA, &(GPIO_InitTypeDef) {
- .Pin = GPIO_PIN_5,
- .Mode = GPIO_MODE_OUTPUT_PP,
- .Pull = GPIO_NOPULL
- });
-
- ws_backlog_alloc(24 * 60);
-
xTaskCreate(ws_sensor_read_task, "sensor", 128, NULL, 1, NULL);
vTaskStartScheduler();
}