aboutsummaryrefslogtreecommitdiff
path: root/main/main.c
diff options
context:
space:
mode:
authorThomasintAnker <thomasintanker1@gmail.com>2024-06-03 10:49:21 +0200
committerThomasintAnker <thomasintanker1@gmail.com>2024-06-03 10:49:21 +0200
commitaca4c7549b2dc8d69931dca7c679c267b146ec48 (patch)
treebc9adb0b01888e304875d286d8019bffe307e9fd /main/main.c
parent2107d89060c345906534f9b0a9eb37e679cdbce8 (diff)
chaos
Diffstat (limited to 'main/main.c')
-rw-r--r--main/main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/main/main.c b/main/main.c
index 051f500..7558a0b 100644
--- a/main/main.c
+++ b/main/main.c
@@ -23,10 +23,6 @@ void blink_task() {
int main() {
init();
- // change queue size(?) + queue
- uint8_t i2cData[2];
- queue = xQueueCreate(10, sizeof(i2cData));
-
xTaskCreate((TaskFunction_t) blink_task, "blink", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL);
xTaskCreate((TaskFunction_t) serve_task, "serve", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL);
xTaskCreate((TaskFunction_t) bus_task, "bus", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL);