From: Jack Humbert <jack.humb@gmail.com>
Date: Mon, 5 Dec 2016 04:11:22 +0000 (-0500)
Subject: Update planck.c
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1eec2b7277ed24a63c42ea6b53a4db530c35dbbd;p=qmk_firmware.git

Update planck.c
---

diff --git a/keyboards/planck/planck.c b/keyboards/planck/planck.c
index 0d37b6622..3980b02f5 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] = {
@@ -20,14 +17,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