mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-19 22:38:05 +02:00
18 lines
231 B
C
18 lines
231 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
|
|
#define FAV_NUM 42
|
|
|
|
void print_me(void);
|
|
|
|
int main(void) {
|
|
stdio_init_all();
|
|
|
|
while (true)
|
|
print_me();
|
|
}
|
|
|
|
void print_me(void) {
|
|
printf("FAV_NUM: %d\r\n", FAV_NUM);
|
|
}
|