Wakeup Light with touch user interface, anti-aliased Font, SD card access and RTC usage on STM32F746NG-DISCO board

Dependencies:   BSP_DISCO_F746NG_patch_fixed LCD_DISCO_F746NG TS_DISCO_F746NG FATFileSystem TinyJpgDec_interwork mbed-src

Committer:
the_sz
Date:
Thu Oct 29 18:09:31 2015 +0000
Revision:
3:ecf7f1f8d749
Child:
5:13c70bcde7f6
ui menu working, time() added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
the_sz 3:ecf7f1f8d749 1 #include "WakeupLight.h"
the_sz 3:ecf7f1f8d749 2
the_sz 3:ecf7f1f8d749 3 void UI_WakeupHandler(UI_REASON_ENUM reason,uint32_t index,UI_STRUCT *ui)
the_sz 3:ecf7f1f8d749 4 {
the_sz 3:ecf7f1f8d749 5 switch (reason)
the_sz 3:ecf7f1f8d749 6 {
the_sz 3:ecf7f1f8d749 7 case UR_CLICK:
the_sz 3:ecf7f1f8d749 8 break;
the_sz 3:ecf7f1f8d749 9
the_sz 3:ecf7f1f8d749 10 case UR_TIMER:
the_sz 3:ecf7f1f8d749 11 break;
the_sz 3:ecf7f1f8d749 12 }
the_sz 3:ecf7f1f8d749 13 }