PushToGo on STM32F429-Disco Board

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI pushtogo usb

Revision:
8:f0455a1d4709
Parent:
6:1b97c5f92717
--- a/LCDConsole.cpp	Sun Sep 23 02:30:32 2018 -0400
+++ b/LCDConsole.cpp	Sun Sep 23 02:31:28 2018 -0400
@@ -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);