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 Nov 12 21:21:48 2015 +0000
Revision:
7:dc29f6647486
Parent:
6:aa51cc3b9f90
Child:
9:fe2c9b3a312b
f746 patch used

Who changed what in which revision?

UserRevisionLine numberNew contents of line
the_sz 1:35e2ad5cd1fe 1 #ifndef __WakeupLight_h
the_sz 1:35e2ad5cd1fe 2 #define __WakeupLight_h
the_sz 1:35e2ad5cd1fe 3
the_sz 1:35e2ad5cd1fe 4 #include "mbed.h"
the_sz 2:80026d18fcf3 5 #include "stm32746g_discovery.h"
the_sz 1:35e2ad5cd1fe 6 #include "TS_DISCO_F746NG.h"
the_sz 1:35e2ad5cd1fe 7 #include "LCD_DISCO_F746NG.h"
the_sz 1:35e2ad5cd1fe 8
the_sz 3:ecf7f1f8d749 9 #define COUNT_OF(__ARRAY__) (sizeof(__ARRAY__)/sizeof(__ARRAY__[0]))
the_sz 3:ecf7f1f8d749 10 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
the_sz 3:ecf7f1f8d749 11 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
the_sz 3:ecf7f1f8d749 12 #define ABS(_VALUE_) (((_VALUE_) < 0) ? -(_VALUE_) : (_VALUE_))
the_sz 3:ecf7f1f8d749 13
the_sz 6:aa51cc3b9f90 14 typedef uint8_t BYTE;
the_sz 6:aa51cc3b9f90 15
the_sz 1:35e2ad5cd1fe 16 #include "OnBoardLED.h"
the_sz 1:35e2ad5cd1fe 17 #include "LED.h"
the_sz 2:80026d18fcf3 18 #include "UI.h"
the_sz 7:dc29f6647486 19 #include "Config.h"
the_sz 1:35e2ad5cd1fe 20 #include "Fonts/display_fonts.h"
the_sz 1:35e2ad5cd1fe 21 #include "debug.h"
the_sz 1:35e2ad5cd1fe 22
the_sz 1:35e2ad5cd1fe 23 #endif