* redoes matrix pins, abstracts backlight code for B5,6,7 * slimming down keyboard stuff, backlight breathing implemented * don't call backlight init when no pin * cleans up user/kb/quantum calls, keyboard files * fix pvc atomic * replaces CHANNEL with correct var in breathing * removes .hexs, updates readmes, updates template * cleans-up clueboards, readmes to lowercase * updates readme
		
			
				
	
	
		
			15 lines
		
	
	
		
			279 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			279 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "atomic.h"
 | 
						|
 | 
						|
void matrix_init_kb(void) {
 | 
						|
    // put your keyboard start-up code here
 | 
						|
    // runs once when the firmware starts up
 | 
						|
 | 
						|
    MCUCR |= (1<<JTD);
 | 
						|
    MCUCR |= (1<<JTD);
 | 
						|
 | 
						|
    // Turn status LED on
 | 
						|
    DDRE |= (1<<6);
 | 
						|
    PORTE |= (1<<6);
 | 
						|
 | 
						|
    matrix_init_user();
 | 
						|
} |