Kompletter OTA Flash-Prozess mit Server (hab zwischencommits vergessen ups)

This commit is contained in:
2026-05-15 23:33:10 +02:00
parent 5d9d3e205b
commit ad05cef1bf
16 changed files with 1797 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "pico/stdlib.h"
#include "pico/cyw43_arch.h"
#ifndef LED_DELAY_MS
#define LED_DELAY_MS 80
#endif
int main(void) {
if (cyw43_arch_init()) {
return -1;
}
while (true) {
cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, true);
sleep_ms(LED_DELAY_MS);
cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, false);
sleep_ms(LED_DELAY_MS);
}
}