rename host API to be consistent with naming on device stack

- tuh_device_get_speed() to tuh_speed_get()
- tuh_device_configured() to tuh_mounted()
- tuh_device_ready() to tuh_ready()
This commit is contained in:
hathach
2021-08-24 12:30:57 +07:00
parent 9c3fdb8135
commit 88bb8fac3d
3 changed files with 15 additions and 8 deletions

View File

@@ -225,12 +225,12 @@ extern bool usbh_control_xfer_cb (uint8_t dev_addr, uint8_t ep_addr, xfer_result
//--------------------------------------------------------------------+
// PUBLIC API (Parameter Verification is required)
//--------------------------------------------------------------------+
bool tuh_device_configured(uint8_t dev_addr)
bool tuh_mounted(uint8_t dev_addr)
{
return get_device(dev_addr)->configured;
}
tusb_speed_t tuh_device_get_speed (uint8_t const dev_addr)
tusb_speed_t tuh_speed_get (uint8_t const dev_addr)
{
TU_ASSERT( dev_addr <= CFG_TUH_DEVICE_MAX + CFG_TUH_HUB, TUSB_SPEED_INVALID);
return (tusb_speed_t) get_device(dev_addr)->speed;