Sign in
pigweed
/
example
/
pico
/
refs/heads/sandbox/picobase
/
.
/
hello_usb.c
blob: f21dc3acc55b414fe9200538986ac6cba26586cd [
file
] [
log
] [
blame
] [
edit
]
/**
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include
"pico/stdlib.h"
#include
<stdio.h>
int
main
()
{
stdio_init_all
();
while
(
true
)
{
printf
(
"Hello, world!\n"
);
sleep_ms
(
1000
);
}
return
0
;
}