From a97737f136bf372bde7779414e92f1aa4fa1ff95 Mon Sep 17 00:00:00 2001 From: DcruBro Date: Fri, 10 Apr 2026 12:30:30 +0200 Subject: [PATCH] Test --- src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 7886034..3824a6f 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,8 @@ int main(void) { // Example to turn on the Pico W LED bool led_on = true; - + printf("Test print\n"); + while (true) { cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, led_on); led_on = !led_on; // Toggle LED state