mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
implement port hcd_port_connect_status
clean up
This commit is contained in:
parent
80facf6f2e
commit
60c2caf84a
@ -152,12 +152,7 @@ void hcd_port_reset(uint8_t hostid)
|
||||
|
||||
bool hcd_port_connect_status(uint8_t hostid)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
tusb_speed_t hcd_port_speed(uint8_t hostid)
|
||||
{
|
||||
return TUSB_SPEED_HIGH;
|
||||
return get_operational_register(hostid)->portsc_bit.current_connect_status;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
|
@ -91,9 +91,8 @@ tusb_error_t hcd_pipe_cancel()ATTR_WARN_UNUSED_RESULT;
|
||||
// PORT API
|
||||
//--------------------------------------------------------------------+
|
||||
/// return the current connect status of roothub port
|
||||
bool hcd_port_connect_status(uint8_t core_id) ATTR_WARN_UNUSED_RESULT;
|
||||
tusb_speed_t hcd_port_speed(uint8_t core_id) ATTR_WARN_UNUSED_RESULT;
|
||||
//tusb_error_t hcd_port_reset(uint8_t core_id) ATTR_WARN_UNUSED_RESULT;
|
||||
bool hcd_port_connect_status(uint8_t core_id) ATTR_CONST ATTR_WARN_UNUSED_RESULT;
|
||||
void hcd_port_reset(uint8_t core_id);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user