summaryrefslogtreecommitdiff
path: root/deps/fff/examples/embedded_ui/include/UI.h
blob: 8a3fb5c5e800e2d1e2c534eeeaf09afcab24ef2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef UI_H_
#define UI_H_

typedef void (*button_cbk_t)(void);

void UI_init();
unsigned int UI_get_missed_irqs();
void UI_button_irq_handler();
void UI_register_button_cbk(button_cbk_t cbk);
void UI_write_line(char *line);

#endif /* UI_H_ */