summaryrefslogtreecommitdiff
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r--tmk_core/common/command.c24
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;
}