mirror of https://github.com/ARMmbed/mbed-os.git
21 lines
536 B
C++
21 lines
536 B
C++
#include "mbed.h"
|
|
#include "test_env.h"
|
|
|
|
#define CUSTOM_TIME 1256729737
|
|
|
|
int main() {
|
|
MBED_HOSTTEST_TIMEOUT(20);
|
|
MBED_HOSTTEST_SELECT(rtc_auto);
|
|
MBED_HOSTTEST_DESCRIPTION(RTC);
|
|
MBED_HOSTTEST_START("MBED_16");
|
|
|
|
char buffer[32] = {0};
|
|
set_time(CUSTOM_TIME); // Set RTC time to Wed, 28 Oct 2009 11:35:37
|
|
while(1) {
|
|
time_t seconds = time(NULL);
|
|
strftime(buffer, 32, "%Y-%m-%d %H:%M:%S %p", localtime(&seconds));
|
|
printf("MBED: [%ld] [%s]\r\n", seconds, buffer);
|
|
wait(1);
|
|
}
|
|
}
|