Renamed all low level Endpoint_Read_*, Endpoint_Write_* and Endpoint_Discard_* functi...
[pub/lufa.git] / Bootloaders / HID / BootloaderHID.c
index 174041e..f048043 100644 (file)
@@ -113,7 +113,7 @@ void EVENT_USB_Device_ControlRequest(void)
                        while (!(Endpoint_IsOUTReceived()));\r
                \r
                        /* Read in the write destination address */\r
-                       uint16_t PageAddress = Endpoint_Read_Word_LE();\r
+                       uint16_t PageAddress = Endpoint_Read_16_LE();\r
                        \r
                        /* Check if the command is a program page command, or a start application command */\r
                        if (PageAddress == COMMAND_STARTAPPLICATION)\r
@@ -137,7 +137,7 @@ void EVENT_USB_Device_ControlRequest(void)
                                        }\r
 \r
                                        /* Write the next data word to the FLASH page */\r
-                                       boot_page_fill(PageAddress + ((uint16_t)PageWord << 1), Endpoint_Read_Word_LE());\r
+                                       boot_page_fill(PageAddress + ((uint16_t)PageWord << 1), Endpoint_Read_16_LE());\r
                                }\r
 \r
                                /* Write the filled FLASH page to memory */\r