* Before using any of usb_host API functions you must initialize API context.
* Also you must cleanup context after using USB host API.
*
- * @section CAPI_USB_HOST_MOUDLE_FEATURES Related Features
+ * @section CAPI_USB_HOST_MODULE_FEATURES Related Features
* This API is related with the following features:
* - %http://tizen.org/feature/usb.host
*
* @defgroup CAPI_USB_HOST_DEV_MODULE USB Host Device
* @brief This API is used to manage USB devices
* @ingroup CAPI_USB_HOST_MODULE
- * @section CAPI_USB_HOST_DEV_MOUDLE_OVERVIEW Overview
+ * @section CAPI_USB_HOST_DEV_MODULE_OVERVIEW Overview
* Operations described here help with enumerating, opening and closing devices.
*
- * @section CAPI_USB_HOST_DEV_MOUDLE_OPENING Opening a device node
+ * @section CAPI_USB_HOST_DEV_MODULE_OPENING Opening a device node
* In order to communicate with device, you must open a device.
* The easiest way to do this is to use usb_host_device_open_with_vid_pid() function.
* However, it is not recommended in most of real-life applications, since there can be more than
* The example code above shows how to open a device for communication and clean up
* allocated resources afterwards.
* First, we iterate through all connected devices looking for the one we want to communicate with.
- * The check() function can be implemented based on any device parameters. Use usb_host_get_*
- * functions to get these parameters, e.g. usb_host_get_device_descriptor().
+ * The check() function can be implemented based on any device parameters. Use usb_host_device_get_*
+ * functions to get these parameters, e.g. usb_host_device_get_id_vendor().
* If we found a device, we can open it by usb_host_device_open() and perform
* communication with it.
* After performing communication we should close device and free device list.
* Each device has reference counter. Functions usb_host_ref_device() and
* usb_host_unref_device() are used to ref or unref device. When ref counter
* reach 0 device will be freed.
- * Devices reached by calling usb_host_get_devices() have a reference count of
+ * Devices reached by calling usb_host_get_device_list() have a reference count of
* 1, and usb_host_free_device_list() can optionally decrease the reference count
* on all devices in the list. usb_host_device_open() adds another reference which is
* later destroyed by usb_host_device_close().
*
- * @section CAPI_USB_HOST_DEV_MOUDLE_PREPARING Preparing Communication
+ * @section CAPI_USB_HOST_DEV_MODULE_PREPARING Preparing Communication
* Before communicating with device, you should claim the interface you want to communicate
* on. Kernel driver can be attached to the interface and you should detach it if you want
* to use that interface. You can do it directly by calling usb_host_kernel_driver_active() and
* Remember to release claimed interfaces after communication and re-attach manually detached
* kernel drivers.
*
- * @section CAPI_USB_HOST_DEV_MOUDLE_FEATURES Related Features
+ * @section CAPI_USB_HOST_DEV_MODULE_FEATURES Related Features
* This API is related with the following features:
* - %http://tizen.org/feature/usb.host
*
* @section CAPI_USB_HOST_CONFIG_MODULE_OVERVIEW Overview
* Data structures and operations described here are related to USB configuration.
*
- * @section CAPI_USB_HOST_CONFIG_MOUDLE_FEATURES Related Features
+ * @section CAPI_USB_HOST_CONFIG_MODULE_FEATURES Related Features
* This API is related with the following features:
* - %http://tizen.org/feature/usb.host
*
* Data structures and operations described here are related to USB interface.
* Each interface has number of endpoints used for performing transfer operations.
*
- * @section CAPI_USB_HOST_INTERFACE_MOUDLE_FEATURES Related Features
+ * @section CAPI_USB_HOST_INTERFACE_MODULE_FEATURES Related Features
* This API is related with the following features:
* - %http://tizen.org/feature/usb.host
*
* @defgroup CAPI_USB_HOST_ENDPOINT_MODULE USB Endpoint
* @brief USB endpoint-related API
* @ingroup CAPI_USB_HOST_MODULE
- * @section CAPI_USB_HOST_INTERFACE_MODULE_OVERVIEW Overview
+ * @section CAPI_USB_HOST_ENDPOINT_MODULE_FEATURES Overview
* Data structures and operations described here are related to USB endpoint.
* Endpoints are used to perform USB transfers.
*
- * @section CAPI_USB_HOST_ENDPOINT_MOUDLE_FEATURES Related Features
+ * @section CAPI_USB_HOST_ENDPOINT_MODULE_FEATURES Related Features
* This API is related with the following features:
* - %http://tizen.org/feature/usb.host
*
* In this example data buffer contains data received from device. Value of transfered
* is set to the number of received bytes.
*
- * @section CAPI_USB_HOST_SYNCIO_MOUDLE_FEATURES Related Features
+ * @section CAPI_USB_HOST_SYNCIO_MODULE_FEATURES Related Features
* This API is related with the following features:
* - %http://tizen.org/feature/usb.host
*