chore: renaming of the get version cmds

This commit is contained in:
Florian Didron
2019-12-04 16:53:47 +09:00
committed by Florian Didron
parent 4a8aa15634
commit 0bd727cb19
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ void webusb_receive(uint8_t *data, uint8_t length) {
uint8_t event[2];
event[0] = WEBUSB_STATUS_OK;
event[1] = WEBUSB_EVT_LANDING_PAGE;
event[1] = WEBUSB_EVT_FW_VERSION;
uint8_t stop[1];
stop[0] = WEBUSB_STOP_BIT;

View File

@@ -38,5 +38,5 @@ enum Webusb_Event_Code {
WEBUSB_EVT_KEYDOWN,
WEBUSB_EVT_KEYUP,
WEBUSB_EVT_LAYER,
WEBUSB_EVT_LANDING_PAGE
WEBUSB_EVT_FW_VERSION
};