Fixed critical pipe/endpoint memory allocation issue where the bank memory address space could be silently overlapped in the USB controller if the endpoints or pipes were allocated in anything other than ascending order (thanks to Martin Degelsegger).
This commit is contained in:
parent
ad4308b1d1
commit
95079868bb
3 changed files with 78 additions and 18 deletions
|
@ -44,21 +44,49 @@ bool Endpoint_ConfigureEndpoint_Prv(const uint8_t Number,
|
|||
const uint8_t UECFG0XData,
|
||||
const uint8_t UECFG1XData)
|
||||
{
|
||||
uint8_t UECFG0XTemp[ENDPOINT_TOTAL_ENDPOINTS];
|
||||
uint8_t UECFG1XTemp[ENDPOINT_TOTAL_ENDPOINTS];
|
||||
|
||||
for (uint8_t EPNum = 0; EPNum < ENDPOINT_TOTAL_ENDPOINTS; EPNum++)
|
||||
{
|
||||
Endpoint_SelectEndpoint(EPNum);
|
||||
UECFG0XTemp[EPNum] = UECFG0X;
|
||||
UECFG1XTemp[EPNum] = UECFG1X;
|
||||
}
|
||||
|
||||
UECFG0XTemp[Number] = UECFG0XData;
|
||||
UECFG1XTemp[Number] = UECFG1XData;
|
||||
|
||||
for (uint8_t EPNum = 1; EPNum < ENDPOINT_TOTAL_ENDPOINTS; EPNum++)
|
||||
{
|
||||
Endpoint_SelectEndpoint(EPNum);
|
||||
UEIENX = 0;
|
||||
UEINTX = 0;
|
||||
UECFG1X = 0;
|
||||
Endpoint_DisableEndpoint();
|
||||
}
|
||||
|
||||
for (uint8_t EPNum = 0; EPNum < ENDPOINT_TOTAL_ENDPOINTS; EPNum++)
|
||||
{
|
||||
if (!(UECFG1XTemp[EPNum] & (1 << ALLOC)))
|
||||
continue;
|
||||
|
||||
Endpoint_SelectEndpoint(EPNum);
|
||||
Endpoint_EnableEndpoint();
|
||||
|
||||
UECFG0X = UECFG0XTemp[EPNum];
|
||||
UECFG1X = UECFG1XTemp[EPNum];
|
||||
|
||||
if (!(Endpoint_IsConfigured()))
|
||||
return false;
|
||||
}
|
||||
|
||||
Endpoint_SelectEndpoint(Number);
|
||||
Endpoint_EnableEndpoint();
|
||||
|
||||
UECFG1X = 0;
|
||||
|
||||
UECFG0X = UECFG0XData;
|
||||
UECFG1X = UECFG1XData;
|
||||
|
||||
return Endpoint_IsConfigured();
|
||||
return true;
|
||||
}
|
||||
|
||||
void Endpoint_ClearEndpoints(void)
|
||||
{
|
||||
UEINT = 0;
|
||||
|
||||
for (uint8_t EPNum = 0; EPNum < ENDPOINT_TOTAL_ENDPOINTS; EPNum++)
|
||||
{
|
||||
Endpoint_SelectEndpoint(EPNum);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue