Skip to content
Snippets Groups Projects
Commit 421479a4 authored by Dean Camera's avatar Dean Camera
Browse files

Fix incomplete StandaloneProgrammer project code not compiling due to the...

Fix incomplete StandaloneProgrammer project code not compiling due to the recent API changes in the LUFA core.
parent 31daf04c
Branches
Tags
No related merge requests found
...@@ -34,7 +34,7 @@ DRESULT disk_readp ( ...@@ -34,7 +34,7 @@ DRESULT disk_readp (
DRESULT ErrorCode = RES_OK; DRESULT ErrorCode = RES_OK;
uint8_t BlockTemp[512]; uint8_t BlockTemp[512];
if (USB_CurrentMode == USB_MODE_HOST) if (USB_CurrentMode == USB_MODE_Host)
{ {
#if defined(USB_CAN_BE_HOST) #if defined(USB_CAN_BE_HOST)
if (USB_HostState != HOST_STATE_Configured) if (USB_HostState != HOST_STATE_Configured)
......
...@@ -84,7 +84,7 @@ void Programmer_Task(void) ...@@ -84,7 +84,7 @@ void Programmer_Task(void)
puts("==== PROGRAMMING CYCLE STARTED ====\r\n"); puts("==== PROGRAMMING CYCLE STARTED ====\r\n");
#if defined(USB_CAN_BE_BOTH) #if defined(USB_CAN_BE_BOTH)
printf("Using %s Drive...\r\n", (USB_CurrentMode == USB_MODE_HOST) ? "External" : "Internal"); printf("Using %s Drive...\r\n", (USB_CurrentMode == USB_MODE_Host) ? "External" : "Internal");
#endif #endif
puts("Reading Configuration File...\r\n"); puts("Reading Configuration File...\r\n");
...@@ -114,7 +114,7 @@ int main(void) ...@@ -114,7 +114,7 @@ int main(void)
{ {
Programmer_Task(); Programmer_Task();
if (USB_CurrentMode == USB_MODE_HOST) if (USB_CurrentMode == USB_MODE_Host)
{ {
#if defined(USB_CAN_BE_HOST) #if defined(USB_CAN_BE_HOST)
DiskHost_USBTask(); DiskHost_USBTask();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment