mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-19 14:28:06 +02:00
17 lines
218 B
C
17 lines
218 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
#include "pico/cyw43_arch.h"
|
|
|
|
int main(void)
|
|
{
|
|
uint8_t age = 42;
|
|
age = 43;
|
|
|
|
stdio_init_all();
|
|
|
|
while (true)
|
|
{
|
|
printf("age: %d\r\n", age);
|
|
}
|
|
}
|