PushToGo on STM32F429-Disco Board

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI pushtogo usb

Revision:
6:1b97c5f92717
Parent:
5:5ea2862a3493
--- a/LCDConsole.cpp	Fri Sep 14 01:51:01 2018 -0400
+++ b/LCDConsole.cpp	Fri Sep 14 06:52:08 2018 +0000
@@ -94,7 +94,7 @@
 
 			time_t t = time(NULL);
 			
-#ifdef __GNUC__
+#if !( defined(__ARMCC_VERSION) || defined(__CC_ARM) )
 			struct tm ts;
 			localtime_r(&t, &ts);
 			strftime(sbuf, sizeof(sbuf), "%T, %x", &ts);