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 05:00:04 2015 +0000
Revision:
1:35e2ad5cd1fe
Child:
3:ecf7f1f8d749
led, debug led, display, debug port working

Who changed what in which revision?

UserRevisionLine numberNew contents of line
the_sz 1:35e2ad5cd1fe 1 #ifndef __LED_h
the_sz 1:35e2ad5cd1fe 2 #define __LED_h
the_sz 1:35e2ad5cd1fe 3
the_sz 1:35e2ad5cd1fe 4 typedef enum
the_sz 1:35e2ad5cd1fe 5 {
the_sz 1:35e2ad5cd1fe 6 LAE_NONE,
the_sz 1:35e2ad5cd1fe 7 LAE_WAKEUP,
the_sz 1:35e2ad5cd1fe 8
the_sz 1:35e2ad5cd1fe 9 } LED_ANIMATION_ENUM;
the_sz 1:35e2ad5cd1fe 10
the_sz 1:35e2ad5cd1fe 11 void LED_Init(void);
the_sz 1:35e2ad5cd1fe 12 void LED_StartAnimation(LED_ANIMATION_ENUM animation);
the_sz 1:35e2ad5cd1fe 13
the_sz 1:35e2ad5cd1fe 14 #endif