diff options
| author | hathach <[email protected]> | 2018-12-07 17:37:54 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-12-07 17:37:54 +0700 |
| commit | e6e367913664140729fa88605da7f1dc52439e16 (patch) | |
| tree | d16548bd5b6f1d18a063e88522ecbd9d6dc2e0d9 /src | |
| parent | 13d08cd63681c20d30e07e8fdcb4ac8d863453a5 (diff) | |
simple cdc host demo work
Diffstat (limited to 'src')
| -rw-r--r-- | src/class/cdc/cdc_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/class/cdc/cdc_host.h b/src/class/cdc/cdc_host.h index 3252aa48d..13d7b710c 100644 --- a/src/class/cdc/cdc_host.h +++ b/src/class/cdc/cdc_host.h @@ -62,7 +62,7 @@ * \retval true if device supports
* \retval false if device does not support or is not mounted
*/
-bool tuh_cdc_serial_is_mounted(uint8_t dev_addr) ATTR_PURE ATTR_WARN_UNUSED_RESULT;
+bool tuh_cdc_serial_is_mounted(uint8_t dev_addr);
/** \brief Check if the interface is currently busy or not
* \param[in] dev_addr device address
@@ -73,7 +73,7 @@ bool tuh_cdc_serial_is_mounted(uint8_t dev_addr) ATTR_PURE ATTR_WARN_UNUSED_RESU * can be scheduled. User needs to make sure the corresponding interface is mounted
* (by \ref tuh_cdc_serial_is_mounted) before calling this function.
*/
-bool tuh_cdc_is_busy(uint8_t dev_addr, cdc_pipeid_t pipeid) ATTR_PURE ATTR_WARN_UNUSED_RESULT;
+bool tuh_cdc_is_busy(uint8_t dev_addr, cdc_pipeid_t pipeid);
/** \brief Perform USB OUT transfer to device
* \param[in] dev_addr device address
|
