aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2020-02-06 11:30:45 +1100
committerskullydazed <skullydazed@users.noreply.github.com>2020-02-08 11:07:43 -0800
commit174a15d07d7321e762e51584e985bb73fe01e99b (patch)
treee82a473ffb704cf806c64fd45453a6d5d6eba4f6 /tmk_core/common/command.c
parent5ab0eeb513f50a14e51467bf76a19997b75d65fb (diff)
downloadfirmware-174a15d07d7321e762e51584e985bb73fe01e99b.tar.gz
firmware-174a15d07d7321e762e51584e985bb73fe01e99b.tar.bz2
firmware-174a15d07d7321e762e51584e985bb73fe01e99b.zip
Remove PJRC USB stack
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 0d6661d60..900de5410 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;
}