Keyboard: Lily58 update serial.c and add OLED (#4715)
* update serial.c and add OLED * update readme * keymap fix * keymap fix2
This commit is contained in:
parent
5b5f452bf9
commit
ea47be936b
36 changed files with 1972 additions and 215 deletions
16
keyboards/lily58/lib/timelogger.c
Normal file
16
keyboards/lily58/lib/timelogger.c
Normal file
|
@ -0,0 +1,16 @@
|
|||
#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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue