diff options
author | fauxpark <fauxpark@gmail.com> | 2020-02-06 11:30:45 +1100 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-02-26 10:15:12 +0900 |
commit | 2d17177c3cee35c2b22398ef8467ad261fa867a6 (patch) | |
tree | b0ab15af0b140090b1ac0297b04c43333336e2fb /tmk_core/common | |
parent | f23bfa24d1485f18b4bb0a38788dbedb21b48392 (diff) |
Remove PJRC USB stack
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/command.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index 0d6661d603..900de54103 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c @@ -43,13 +43,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. # include "mousekey.h" #endif -#ifdef PROTOCOL_PJRC -# include "usb_keyboard.h" -# ifdef EXTRAKEY_ENABLE -# include "usb_extra.h" -# endif -#endif - #ifdef PROTOCOL_VUSB # include "usbdrv.h" #endif @@ -165,9 +158,6 @@ static void print_version(void) { /* build options */ print("OPTIONS:" -#ifdef PROTOCOL_PJRC - " PJRC" -#endif #ifdef PROTOCOL_LUFA " LUFA" #endif @@ -217,20 +207,6 @@ static void print_status(void) { print_val_hex8(keymap_config.nkro); #endif print_val_hex32(timer_read32()); - -#ifdef PROTOCOL_PJRC - print_val_hex8(UDCON); - print_val_hex8(UDIEN); - print_val_hex8(UDINT); - print_val_hex8(usb_keyboard_leds); - print_val_hex8(usb_keyboard_idle_count); -#endif - -#ifdef PROTOCOL_PJRC -# if USB_COUNT_SOF - print_val_hex8(usbSofCount); -# endif -#endif return; } |