RISC-V/hello/main.cpp
2024-03-17 16:33:48 +01:00

15 lines
357 B
C++

/* SIMPLE EXAMPLE: LED blinking */
/* Když už mám PWM hotové, tak to může
* na pinech PD0 a PD2 pípat. Frekvence
* je 1kHz - čistý sinus.
* */
#include "morse.h"
//////////////////////////////////////
static GpioClass led (GPIOD, 4);
static Morse morse (led, 100u);
int main () {
for (;;) {
morse << "hello world";
}
return 0;
}