diff options
author | Joel Challis <git@zvecr.com> | 2019-11-25 20:33:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 20:33:02 +0000 |
commit | f0f161e5724375b7a289699703d86d6de2adae8d (patch) | |
tree | 2560653fc37df8ee0210e3bb3414628ba74b28ef /tmk_core/protocol/vusb | |
parent | 3a7085dee4389bfc3356336180b44d294cf0738a (diff) | |
download | qmk_firmware-f0f161e5724375b7a289699703d86d6de2adae8d.tar.gz qmk_firmware-f0f161e5724375b7a289699703d86d6de2adae8d.zip |
Remove vusb 'reset to bootloader' hid message due to security implications (#7456)
Diffstat (limited to 'tmk_core/protocol/vusb')
-rw-r--r-- | tmk_core/protocol/vusb/vusb.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/tmk_core/protocol/vusb/vusb.c b/tmk_core/protocol/vusb/vusb.c index 72445e00bb..e669384455 100644 --- a/tmk_core/protocol/vusb/vusb.c +++ b/tmk_core/protocol/vusb/vusb.c @@ -26,7 +26,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "debug.h" #include "host_driver.h" #include "vusb.h" -#include "bootloader.h" #include <util/delay.h> static uint8_t vusb_keyboard_leds = 0; @@ -145,7 +144,7 @@ static void send_consumer(uint16_t data) { *------------------------------------------------------------------*/ static struct { uint16_t len; - enum { NONE, BOOTLOADER, SET_LED } kind; + enum { NONE, SET_LED } kind; } last_req; usbMsgLen_t usbFunctionSetup(uchar data[8]) { @@ -173,11 +172,6 @@ usbMsgLen_t usbFunctionSetup(uchar data[8]) { debug("SET_LED: "); last_req.kind = SET_LED; last_req.len = rq->wLength.word; -#ifdef BOOTLOADER_SIZE - } else if (rq->wValue.word == 0x0301) { - last_req.kind = BOOTLOADER; - last_req.len = rq->wLength.word; -#endif } return USB_NO_MSG; // to get data in usbFunctionWrite } else { @@ -204,11 +198,6 @@ uchar usbFunctionWrite(uchar *data, uchar len) { last_req.len = 0; return 1; break; - case BOOTLOADER: - usbDeviceDisconnect(); - bootloader_jump(); - return 1; - break; case NONE: default: return -1; |