goodwatch/firmware/apps/hex.h
Travis Goodspeed 462f4b0bc9 app_draw() now distinguishes between forced and unforced draws.
Hex editor is now purely reactive, with no idle drawing.
2018-07-29 12:59:24 -04:00

14 lines
263 B
C

/*! \file hex.h
\brief Hex editor application.
*/
//! Enter the hex editor.
void hex_init();
//! Exit the hex editor.
int hex_exit();
//! Draw the screen.
void hex_draw(int forced);
//! A button has been pressed for the hex editor.
int hex_keypress(char ch);