* improvement of crkbd communication functions (based on helix-keyboard) * Removed unnecessary code. * Changed read restriction from #define to #pragma once. * Changed from sizeof to defined size. * moved lib folder to crkbdroot. removed warning of ws2812.d
		
			
				
	
	
		
			17 lines
		
	
	
		
			353 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			353 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdio.h>
 | 
						|
#include "crkbd.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;
 | 
						|
}
 |