mirror of
https://codeberg.org/ProgramSnail/my-crkbd-firmware.git
synced 2026-01-04 22:08:21 +00:00
init, separate crkbd config from qmk tree
This commit is contained in:
commit
f211e4a793
18 changed files with 1856 additions and 0 deletions
16
lib/timelogger.c
Normal file
16
lib/timelogger.c
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#include <stdio.h>
|
||||
#include "timer.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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue