Source code for the Trusted Boot Module.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
tbm-mcu/source/platform/virtual/rtc.c

22 lines
227 B

#include <macros.h>
#include <rtc.h>
int rtc_get_time(struct tm *time)
{
return 0;
}
static int rtc_set_time(struct tm *time)
{
return 0;
}
int rtc_init(struct tm *time)
{
/*
rtc_set_time(time);
*/
return 0;
}