Started a gui menuflow

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Committer:
ahaas92
Date:
Thu Jun 11 22:55:06 2020 +0000
Revision:
3:b029a3f73a9e
Init of gui structure ;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ahaas92 3:b029a3f73a9e 1 #ifndef __TOUCH_H
ahaas92 3:b029a3f73a9e 2 #define __TOUCH_H
ahaas92 3:b029a3f73a9e 3 #ifdef TARGET_DISCO_F429ZI
ahaas92 3:b029a3f73a9e 4 #include "TS_DISCO_F429ZI.h"
ahaas92 3:b029a3f73a9e 5 #include "LCD_DISCO_F429ZI.h"
ahaas92 3:b029a3f73a9e 6 #include "Screens.h"
ahaas92 3:b029a3f73a9e 7 void CheckTs();
ahaas92 3:b029a3f73a9e 8 void CheckPress(ScreenState screen);
ahaas92 3:b029a3f73a9e 9
ahaas92 3:b029a3f73a9e 10 #else
ahaas92 3:b029a3f73a9e 11 #error "This class must be used with DISCO_F429ZI board only."
ahaas92 3:b029a3f73a9e 12 #endif // TARGET_DISCO_F429ZI
ahaas92 3:b029a3f73a9e 13
ahaas92 3:b029a3f73a9e 14 #endif