ra8-firmware 0.1.0
Bare-metal firmware for the Renesas RA8 family (RA8D2 / RA8P1)
Loading...
Searching...
No Matches
board_input.h
Go to the documentation of this file.
1
21
22#pragma once
23
24#include <stdint.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
45void board_input_push_key(char ch);
46
60bool board_input_pop_key(char* out);
61
62#ifdef __cplusplus
63}
64#endif
void board_input_push_key(char ch)
Push one keystroke byte into the input FIFO.
Definition board_input.c:28
bool board_input_pop_key(char *out)
Pop the oldest buffered keystroke, if any.
Definition board_input.c:37