aboutsummaryrefslogtreecommitdiffstats
path: root/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui.h')
-rw-r--r--gui.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/gui.h b/gui.h
index 8589edca..443f31b3 100644
--- a/gui.h
+++ b/gui.h
@@ -10,16 +10,6 @@ struct button_t {
uint16_t interval;
};
-struct keymatrix_t {
- uint16_t x0;
- uint16_t y0;
- uint16_t off;
- uint16_t size;
- uint16_t digits;
- uint32_t *number;
- uint16_t interval;
-};
-
/*
* Description: starts main GUI thread which keeps X and Y coordinates of touchpad updated for guiDraw() threads
*
@@ -44,14 +34,5 @@ void guiInit(uint16_t updateIntervl);
*/
Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t inverval, uint8_t *state);
-/*
- * Description: draws keymatrix
- *
- * param:
- *
- * return: pointer to created thread
- */
-Thread *guiDrawKeymatrix(uint16_t x0, uint16_t y0, uint16_t size, uint16_t space, uint16_t fontColor, uint16_t buttonColor, uint16_t inverval, uint16_t digits, uint32_t *number);
-
#endif