diff options
author | ThomasintAnker <thomasintanker1@gmail.com> | 2024-05-31 00:00:19 +0200 |
---|---|---|
committer | ThomasintAnker <thomasintanker1@gmail.com> | 2024-05-31 00:00:19 +0200 |
commit | 519ffcefbe607dcb89dd9da654628dd3b0c588eb (patch) | |
tree | 465f82fcc7bc6f8e91ad8515c9e47543a8ff8da8 /main | |
parent | 4525f60f29359b7ba88e47880d79fb9869913656 (diff) |
Working i2c+utp wo extra functionality
Diffstat (limited to 'main')
-rw-r--r-- | main/i2c.c | 1 | ||||
-rw-r--r-- | main/i2c.h | 1 | ||||
-rw-r--r-- | main/init.c | 2 | ||||
-rw-r--r-- | main/main.c | 2 |
4 files changed, 5 insertions, 1 deletions
@@ -38,6 +38,7 @@ void init_addr_array(uint8_t array[], int size) { } } +// Make sure that current addresses are checked (modules), and invalid addresses are ignore (neotrellis slave) uint8_t* scan_bus(uint8_t *array) { int ret; int i = 0; @@ -1,5 +1,6 @@ #pragma once // https://github.com/raspberrypi/pico-examples/tree/master/i2c +// https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html #include <stddef.h> #include <stdint.h> diff --git a/main/init.c b/main/init.c index 08177c7..fee3a6a 100644 --- a/main/init.c +++ b/main/init.c @@ -24,8 +24,10 @@ static void init_wifi() { // enable 'station' mode (connect to an access point instead of acting like one) cyw43_arch_enable_sta_mode(); + /* WERKT GEWOON NIET MET DEZE LIJNEN CODE */ // if (cyw43_arch_wifi_connect_timeout_ms(CONF_NET_SSID, CONF_NET_PASS, CONF_NET_AUTH, CONF_NET_CONN_TIMEOUT)) // panic("cyw43_arch_wifi_connect failed\n"); + /* WERKT GEWOON NIET MET DEZE LIJNEN CODE */ printf("connected to Wi-Fi\n"); diff --git a/main/main.c b/main/main.c index 19dd3cd..b38030f 100644 --- a/main/main.c +++ b/main/main.c @@ -24,7 +24,7 @@ int main() { init(); 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) 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); vTaskStartScheduler(); |