Flesh out time module
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
#include "display_driver.h"
|
||||
#include "fatal.h"
|
||||
#include "time.h"
|
||||
#include "time_manager.h"
|
||||
|
||||
#include "esp_log.h"
|
||||
#include "esp_timer.h"
|
||||
@@ -57,7 +57,7 @@ static void show_time(unsigned hour, unsigned minute)
|
||||
static void update_time(void *arg)
|
||||
{
|
||||
(void)arg;
|
||||
const Time time = time_get();
|
||||
const Time time = get_time();
|
||||
show_time(time.hour, time.minute);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user