RISC-V/hello/main.cpp
2024-02-29 12:22:16 +01:00

11 lines
224 B
C++

/* SIMPLE EXAMPLE: LED blinking */
#include "morse.h"
//////////////////////////////////////
int main () {
GpioClass led (GPIOD, 4);
Morse morse (led, 333);
for (;;) {
morse << "hello world";
}
return 0;
}