2013-02-18 15:32:11 +00:00
|
|
|
#include "mbed.h"
|
|
|
|
|
2014-03-20 15:52:06 +00:00
|
|
|
#define CUSTOM_TIME 1256729737
|
2013-02-18 15:32:11 +00:00
|
|
|
|
2014-03-20 15:52:06 +00:00
|
|
|
int main() {
|
|
|
|
char buffer[32] = {0};
|
|
|
|
set_time(CUSTOM_TIME); // Set RTC time to Wed, 28 Oct 2009 11:35:37
|
2013-02-18 15:32:11 +00:00
|
|
|
while(1) {
|
|
|
|
time_t seconds = time(NULL);
|
2014-03-20 15:52:06 +00:00
|
|
|
strftime(buffer, 32, "%Y-%m-%d %H:%M:%S %p", localtime(&seconds));
|
|
|
|
printf("[%d] [%s]\n", seconds, buffer);
|
2013-02-18 15:32:11 +00:00
|
|
|
wait(1);
|
|
|
|
}
|
|
|
|
}
|