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.
17 lines
354 B
17 lines
354 B
6 years ago
|
#include <stdio.h>
|
||
|
#include "lily58.h"
|
||
|
|
||
|
char timelog_str[24] = {};
|
||
|
int last_time = 0;
|
||
|
int elapsed_time = 0;
|
||
|
|
||
|
void set_timelog(void) {
|
||
|
elapsed_time = timer_elapsed(last_time);
|
||
|
last_time = timer_read();
|
||
|
snprintf(timelog_str, sizeof(timelog_str), "lt:%5d, et:%5d", last_time, elapsed_time);
|
||
|
}
|
||
|
|
||
|
const char *read_timelog(void) {
|
||
|
return timelog_str;
|
||
|
}
|