mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-17 21:44:45 +02:00
14 lines
181 B
C
14 lines
181 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
#include "pico/cyw43_arch.h"
|
|
|
|
int main(void)
|
|
{
|
|
stdio_init_all();
|
|
|
|
while (true)
|
|
{
|
|
printf("hello, world\r\n");
|
|
}
|
|
}
|