mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
6e42d34da4
Apps can now opt to redraw by returning non-zero from a keypress. Flicker is now more reliable.
14 lines
275 B
C
14 lines
275 B
C
/*! \file tuner.h
|
|
\brief Tuning application and RSSI tool.
|
|
*/
|
|
|
|
//! Enter the radio tool.
|
|
void tuner_init();
|
|
//! Exit the radio tool.
|
|
int tuner_exit();
|
|
//! Draw the screen and increase the count.
|
|
void tuner_draw();
|
|
|
|
//! Tuner keypress callback.
|
|
int tuner_keypress(char ch);
|