mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-23 22:43:49 +00:00
clean up
This commit is contained in:
parent
f33883c308
commit
396716cc2c
@ -15,8 +15,8 @@ add_executable(${PROJECT})
|
|||||||
# Example source
|
# Example source
|
||||||
target_sources(${PROJECT} PUBLIC
|
target_sources(${PROJECT} PUBLIC
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/cdc_app.c
|
${CMAKE_CURRENT_SOURCE_DIR}/src/cdc_app.c
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/main.c
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/hid_app.c
|
${CMAKE_CURRENT_SOURCE_DIR}/src/hid_app.c
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/src/main.c
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/msc_app.c
|
${CMAKE_CURRENT_SOURCE_DIR}/src/msc_app.c
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -41,16 +41,6 @@
|
|||||||
/** \defgroup ClassDriver_CDC_Common Common Definitions
|
/** \defgroup ClassDriver_CDC_Common Common Definitions
|
||||||
* @{ */
|
* @{ */
|
||||||
|
|
||||||
// TODO remove
|
|
||||||
/// CDC Pipe ID, used to indicate which pipe the API is addressing to (Notification, Out, In)
|
|
||||||
typedef enum
|
|
||||||
{
|
|
||||||
CDC_PIPE_NOTIFICATION , ///< Notification pipe
|
|
||||||
CDC_PIPE_DATA_IN , ///< Data in pipe
|
|
||||||
CDC_PIPE_DATA_OUT , ///< Data out pipe
|
|
||||||
CDC_PIPE_ERROR , ///< Invalid Pipe ID
|
|
||||||
}cdc_pipeid_t;
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
// CDC Communication Interface Class
|
// CDC Communication Interface Class
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
@ -223,13 +213,13 @@ typedef enum
|
|||||||
{
|
{
|
||||||
CDC_NOTIF_NETWORK_CONNECTION = 0x00, ///< This notification allows the device to notify the host about network connection status.
|
CDC_NOTIF_NETWORK_CONNECTION = 0x00, ///< This notification allows the device to notify the host about network connection status.
|
||||||
CDC_NOTIF_RESPONSE_AVAILABLE = 0x01, ///< This notification allows the device to notify the hostthat a response is available. This response can be retrieved with a subsequent \ref CDC_REQUEST_GET_ENCAPSULATED_RESPONSE request.
|
CDC_NOTIF_RESPONSE_AVAILABLE = 0x01, ///< This notification allows the device to notify the hostthat a response is available. This response can be retrieved with a subsequent \ref CDC_REQUEST_GET_ENCAPSULATED_RESPONSE request.
|
||||||
CDC_NOTIF_AUX_JACK_HOOK_STATE = 0x08,///< CDC_NOTIF_AUX_JACK_HOOK_STATE
|
CDC_NOTIF_AUX_JACK_HOOK_STATE = 0x08,
|
||||||
CDC_NOTIF_RING_DETECT = 0x09,///< CDC_NOTIF_RING_DETECT
|
CDC_NOTIF_RING_DETECT = 0x09,
|
||||||
CDC_NOTIF_SERIAL_STATE = 0x20,///< CDC_NOTIF_SERIAL_STATE
|
CDC_NOTIF_SERIAL_STATE = 0x20,
|
||||||
CDC_NOTIF_CALL_STATE_CHANGE = 0x28,///< CDC_NOTIF_CALL_STATE_CHANGE
|
CDC_NOTIF_CALL_STATE_CHANGE = 0x28,
|
||||||
CDC_NOTIF_LINE_STATE_CHANGE = 0x29,///< CDC_NOTIF_LINE_STATE_CHANGE
|
CDC_NOTIF_LINE_STATE_CHANGE = 0x29,
|
||||||
CDC_NOTIF_CONNECTION_SPEED_CHANGE = 0x2A, ///< This notification allows the device to inform the host-networking driver that a change in either the upstream or the downstream bit rate of the connection has occurred
|
CDC_NOTIF_CONNECTION_SPEED_CHANGE = 0x2A, ///< This notification allows the device to inform the host-networking driver that a change in either the upstream or the downstream bit rate of the connection has occurred
|
||||||
CDC_NOTIF_MDLM_SEMANTIC_MODEL_NOTIFICATION = 0x40,///< CDC_NOTIF_MDLM_SEMANTIC_MODEL_NOTIFICATION
|
CDC_NOTIF_MDLM_SEMANTIC_MODEL_NOTIFICATION = 0x40,
|
||||||
}cdc_notification_request_t;
|
}cdc_notification_request_t;
|
||||||
|
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
|
Loading…
x
Reference in New Issue
Block a user