diff options
Diffstat (limited to 'keyboards/phantom/phantom.c')
-rw-r--r-- | keyboards/phantom/phantom.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboards/phantom/phantom.c b/keyboards/phantom/phantom.c new file mode 100644 index 000000000..d53af491f --- /dev/null +++ b/keyboards/phantom/phantom.c @@ -0,0 +1,9 @@ +#include "phantom.h" +#include "led.h" + +void matrix_init_kb(void) { + // put your keyboard start-up code here + // runs once when the firmware starts up + matrix_init_user(); + led_init_ports(); +}; |