ASCII Serial Com
Serial communication library between computers, microcontrollers, FPGAs, etc. Uses only ASCII. Not the most efficient protocol, but meant to be easy to read
|
Simple blinking LED demo program using the lowest 8 bits of the GPIO.output port. More...
#include <neorv32.h>
Go to the source code of this file.
Macros | |
User configuration | |
#define | BAUD_RATE 19200 |
Functions | |
void | blink_led_c (void) |
int | main () |
Simple blinking LED demo program using the lowest 8 bits of the GPIO.output port.
blink_led/main.c
Definition in file neorv32_blink_led.c.
#define BAUD_RATE 19200 |
void blink_led_c | ( | void | ) |
C function to blink LEDs
C-version of blinky LED counter
Definition at line 140 of file neorv32_blink_led.c.
Referenced by main().
int main | ( | void | ) |
Main function; shows an incrementing 8-bit counter on GPIO.output(7:0).
Definition at line 109 of file neorv32_blink_led.c.
References BAUD_RATE, and blink_led_c().