Open
Description
Describe the bug
The USB Host Stack does not function when trying to use it with UX_HOST_STANDALONE..
To Reproduce
Steps to reproduce the behavior:
- Compile project with UX_HOST_STANDALONE
- I happened to be using the OHCI backend but would be valid for any backend.
Some issues that I identified early in the device state machine:
_ux_host_stack_rh_port_reset
does not return a UX_STATE
value. So the status value is invalid here.
_ux_host_stack_rh_port_reset
also returns UX_PORT_RESET_FAILED because it fails the check on actual_flags as _ux_host_event_flags_get
is stubbed out.
Not sure if this is intended to function with UX_HOST_STANDALONE or its for testing only?