RISC-V/hello/main.cpp

12 lines
224 B
C++
Raw Normal View History

2024-02-29 12:22:16 +01:00
/* SIMPLE EXAMPLE: LED blinking */
#include "morse.h"
//////////////////////////////////////
int main () {
GpioClass led (GPIOD, 4);
Morse morse (led, 333);
for (;;) {
morse << "hello world";
}
return 0;
}