Content originally posted in LPCWare by arturn on Tue May 28 09:22:19 MST 2013Hi other time...
I'm setting current date and time with this registers :
<code> LPC_RTC->YEAR = atoi(year);
LPC_RTC->MONTH = atoi(month)+1;
LPC_RTC->DOM = atoi(day) +1;
LPC_RTC->HOUR = atoi(hour);
LPC_RTC->MIN = atoi(minute);
LPC_RTC->SEC = atoi(second);</code>
But after setting mote hangs out...
Its the right way to set time? I'm lost something?
Thnks!<code>
</code>