aboutsummaryrefslogtreecommitdiff
path: root/stm32f091/main.c
blob: 80eb5a747f275ff3751021846822413dc7d7f336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <FreeRTOS.h>
#include <task.h>
#include <stm32f0xx_hal.h>

#include "main.h"
#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);
	vTaskStartScheduler();
}