2017-01-11 05:59 AM
I'm using a NUCLEO-144 with an STM32F412ZG MCU. I'm having issues with the time() function. If I load my application via the debugger, the call to time() gives me the desired result. If I run my application normally (drag & drop the binary to the device), the processor will lock up when time() is called. Any ideas what the issue may be?
2017-01-11 06:27 AM
In Keil you have to provide code that understands time on your board/chip (say via a specific RTC, or SysTick), rather than have it hosted via SWI/BKPT from your PC