X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/hmcfgusb/blobdiff_plain/372541519b32a361dac48284b45c0cfd45e8f7fc..915b783358b0f140fe44d0aeb4295a071f4e0054:/hmuartlgw.c diff --git a/hmuartlgw.c b/hmuartlgw.c index 417c6c2..9335c44 100644 --- a/hmuartlgw.c +++ b/hmuartlgw.c @@ -48,7 +48,7 @@ enum hmuartlgw_state { HMUARTLGW_ENTER_BOOTLOADER, HMUARTLGW_ENTER_BOOTLOADER_ACK, HMUARTLGW_BOOTLOADER, - HMUARTLGW_IP_BOOTLOADER, + HMUARTLGW_HMIP_BOOTLOADER, HMUARTLGW_ENTER_APPLICATION, HMUARTLGW_ENTER_APPLICATION_ACK, HMUARTLGW_APPLICATION, @@ -112,7 +112,7 @@ static int hmuartlgw_init_parse(enum hmuartlgw_dst dst, uint8_t *buf, int buf_le rdata->state = HMUARTLGW_HMIP_APPLICATION; return 1; } else if (!strncmp(((char*)buf)+2, "HMIP_TRX_Bl", 11)) { - rdata->state = HMUARTLGW_IP_BOOTLOADER; + rdata->state = HMUARTLGW_HMIP_BOOTLOADER; return 1; } } @@ -324,7 +324,7 @@ void hmuartlgw_enter_bootloader(struct hmuartlgw_dev *dev) } while (rdata.state == HMUARTLGW_QUERY_APPSTATE); if ((rdata.state != HMUARTLGW_BOOTLOADER) && - (rdata.state != HMUARTLGW_IP_BOOTLOADER)) { + (rdata.state != HMUARTLGW_HMIP_BOOTLOADER)) { rdata.dev = dev; rdata.state = HMUARTLGW_ENTER_BOOTLOADER; buf[0] = HMUARTLGW_OS_CHANGE_APP; @@ -337,7 +337,7 @@ void hmuartlgw_enter_bootloader(struct hmuartlgw_dev *dev) exit(1); } } while ((rdata.state != HMUARTLGW_BOOTLOADER) && - (rdata.state != HMUARTLGW_IP_BOOTLOADER)); + (rdata.state != HMUARTLGW_HMIP_BOOTLOADER)); printf("Waiting for bootloader to settle...\n"); sleep(HMUARTLGW_SETTLE_TIME);