diff options
author | fauxpark <fauxpark@gmail.com> | 2020-02-06 11:30:45 +1100 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2020-02-08 11:07:43 -0800 |
commit | 174a15d07d7321e762e51584e985bb73fe01e99b (patch) | |
tree | e82a473ffb704cf806c64fd45453a6d5d6eba4f6 /tmk_core/common | |
parent | 5ab0eeb513f50a14e51467bf76a19997b75d65fb (diff) | |
download | qmk_firmware-174a15d07d7321e762e51584e985bb73fe01e99b.tar.gz qmk_firmware-174a15d07d7321e762e51584e985bb73fe01e99b.zip |
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 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/>. | |||
43 | # include "mousekey.h" | 43 | # include "mousekey.h" |
44 | #endif | 44 | #endif |
45 | 45 | ||
46 | #ifdef PROTOCOL_PJRC | ||
47 | # include "usb_keyboard.h" | ||
48 | # ifdef EXTRAKEY_ENABLE | ||
49 | # include "usb_extra.h" | ||
50 | # endif | ||
51 | #endif | ||
52 | |||
53 | #ifdef PROTOCOL_VUSB | 46 | #ifdef PROTOCOL_VUSB |
54 | # include "usbdrv.h" | 47 | # include "usbdrv.h" |
55 | #endif | 48 | #endif |
@@ -165,9 +158,6 @@ static void print_version(void) { | |||
165 | /* build options */ | 158 | /* build options */ |
166 | print("OPTIONS:" | 159 | print("OPTIONS:" |
167 | 160 | ||
168 | #ifdef PROTOCOL_PJRC | ||
169 | " PJRC" | ||
170 | #endif | ||
171 | #ifdef PROTOCOL_LUFA | 161 | #ifdef PROTOCOL_LUFA |
172 | " LUFA" | 162 | " LUFA" |
173 | #endif | 163 | #endif |
@@ -217,20 +207,6 @@ static void print_status(void) { | |||
217 | print_val_hex8(keymap_config.nkro); | 207 | print_val_hex8(keymap_config.nkro); |
218 | #endif | 208 | #endif |
219 | print_val_hex32(timer_read32()); | 209 | print_val_hex32(timer_read32()); |
220 | |||
221 | #ifdef PROTOCOL_PJRC | ||
222 | print_val_hex8(UDCON); | ||
223 | print_val_hex8(UDIEN); | ||
224 | print_val_hex8(UDINT); | ||
225 | print_val_hex8(usb_keyboard_leds); | ||
226 | print_val_hex8(usb_keyboard_idle_count); | ||
227 | #endif | ||
228 | |||
229 | #ifdef PROTOCOL_PJRC | ||
230 | # if USB_COUNT_SOF | ||
231 | print_val_hex8(usbSofCount); | ||
232 | # endif | ||
233 | #endif | ||
234 | return; | 210 | return; |
235 | } | 211 | } |
236 | 212 | ||