mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 16:37:58 +06:00
11 lines
145 B
C
11 lines
145 B
C
#include "quantum.h"
|
|
|
|
void matrix_init_kb(void) {
|
|
|
|
// Turn status LED on
|
|
//DDRE |= (1<<6);
|
|
PORTE |= (1<<6);
|
|
|
|
matrix_init_user();
|
|
};
|