Fix incorrect LED mask name in the Webserver project.

Fix missing text from the Host Mode States enum documentation.
This commit is contained in:
Dean Camera 2010-03-09 13:22:51 +00:00
parent ce260ae786
commit 92418433a5
3 changed files with 6 additions and 4 deletions

View file

@ -172,7 +172,7 @@ static void uIPManagement_ProcessIncomingPacket(void)
}
}
LEDs_SetAllLEDs(LEDMASK_USB_READY | ((HaveIPConfiguration) ? LEDMASK_UIP_READY : LEDMASK_UIP_READY_NOCONFIG));
LEDs_SetAllLEDs(LEDMASK_USB_READY | ((HaveIPConfiguration) ? LEDMASK_UIP_READY_CONFIG : LEDMASK_UIP_READY_NOCONFIG));
}
/** Manages the currently open network connections, including TCP and (if enabled) UDP. */