Fix possible infinite loop in the control stream write template functions.
This commit is contained in:
parent
910c6eb599
commit
b8f7dae24c
3 changed files with 6 additions and 0 deletions
|
@ -79,6 +79,8 @@ uint8_t TEMPLATE_FUNC_NAME (const void* const Buffer,
|
||||||
return ENDPOINT_RWCSTREAM_DeviceDisconnected;
|
return ENDPOINT_RWCSTREAM_DeviceDisconnected;
|
||||||
else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended)
|
else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended)
|
||||||
return ENDPOINT_RWCSTREAM_BusSuspended;
|
return ENDPOINT_RWCSTREAM_BusSuspended;
|
||||||
|
else if (Endpoint_IsSETUPReceived())
|
||||||
|
return ENDPOINT_RWCSTREAM_HostAborted;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ENDPOINT_RWCSTREAM_NoError;
|
return ENDPOINT_RWCSTREAM_NoError;
|
||||||
|
|
|
@ -79,6 +79,8 @@ uint8_t TEMPLATE_FUNC_NAME (const void* const Buffer,
|
||||||
return ENDPOINT_RWCSTREAM_DeviceDisconnected;
|
return ENDPOINT_RWCSTREAM_DeviceDisconnected;
|
||||||
else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended)
|
else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended)
|
||||||
return ENDPOINT_RWCSTREAM_BusSuspended;
|
return ENDPOINT_RWCSTREAM_BusSuspended;
|
||||||
|
else if (Endpoint_IsSETUPReceived())
|
||||||
|
return ENDPOINT_RWCSTREAM_HostAborted;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ENDPOINT_RWCSTREAM_NoError;
|
return ENDPOINT_RWCSTREAM_NoError;
|
||||||
|
|
|
@ -81,6 +81,8 @@ uint8_t TEMPLATE_FUNC_NAME (const void* const Buffer,
|
||||||
return ENDPOINT_RWCSTREAM_DeviceDisconnected;
|
return ENDPOINT_RWCSTREAM_DeviceDisconnected;
|
||||||
else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended)
|
else if (USB_DeviceState_LCL == DEVICE_STATE_Suspended)
|
||||||
return ENDPOINT_RWCSTREAM_BusSuspended;
|
return ENDPOINT_RWCSTREAM_BusSuspended;
|
||||||
|
else if (Endpoint_IsSETUPReceived())
|
||||||
|
return ENDPOINT_RWCSTREAM_HostAborted;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ENDPOINT_RWCSTREAM_NoError;
|
return ENDPOINT_RWCSTREAM_NoError;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue