X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=keyboards%2Fplanck%2Fplanck.c;h=1d2f91bc557efd06e99978829511d8cff1c95f5b;hb=b669d115c2969a58f0ae00f6ae5c2290dba44c03;hp=0d37b6622366103991b75e21e78e910f9f400c52;hpb=fe001d46fd06924bb81fe8d506f5be8894db3df0;p=qmk_firmware.git diff --git a/keyboards/planck/planck.c b/keyboards/planck/planck.c index 0d37b6622..1d2f91bc5 100644 --- a/keyboards/planck/planck.c +++ b/keyboards/planck/planck.c @@ -1,8 +1,5 @@ #include "planck.h" -#include "raw_hid.h" -#include "keymap.h" - #ifdef ONEHAND_ENABLE __attribute__ ((weak)) const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { @@ -13,6 +10,7 @@ const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { }; #endif +__attribute__ ((weak)) void matrix_init_kb(void) { // Turn status LED on DDRE |= (1<<6); @@ -20,14 +18,3 @@ void matrix_init_kb(void) { matrix_init_user(); } - -#ifdef RAW_ENABLE - -void raw_hid_receive( uint8_t *data, uint8_t length ) -{ - // Basic test of Raw HID - // Echo back data received - raw_hid_send( data, length ); -} - -#endif