debug_screen.h 472 B

123456789101112131415161718192021222324
  1. /*
  2. * debug_screen.h
  3. *
  4. * Created on: Jan 12, 2021
  5. * Author: David Original work by Jose (PTDreamer), 2017
  6. */
  7. #ifndef GRAPHICS_GUI_DEBUG_SCREEN_H_
  8. #define GRAPHICS_GUI_DEBUG_SCREEN_H_
  9. #include "screen.h"
  10. // Uncomment to enable debug menu
  11. //#define ENABLE_DEBUG_SCREEN
  12. extern screen_t Screen_debug;
  13. extern screen_t Screen_debug2;
  14. void debug_screen_setup(screen_t *scr);
  15. void debug2_screen_setup(screen_t *scr);
  16. #endif /* GRAPHICS_GUI_DEBUG_SCREEN_H_ */