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:
Sun Jan 31 01:02:36 2016 +0000
Revision:
12:a89096944f20
date adjust added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
the_sz 12:a89096944f20 1 #ifndef __RTC_h
the_sz 12:a89096944f20 2 #define __RTC_h
the_sz 12:a89096944f20 3
the_sz 12:a89096944f20 4 void RTC_Init(void);
the_sz 12:a89096944f20 5 time_t RTC_Get(struct tm **tmStruct);
the_sz 12:a89096944f20 6 void RTC_Set(struct tm *tmStruct);
the_sz 12:a89096944f20 7
the_sz 12:a89096944f20 8 #endif