| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- /* This file is the part of the LUS32 project
- *
- * Copyright ©2016 Dmitry Filimonchuk <dmitrystu[at]gmail[dot]com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifndef _USB_CDC_H_
- #define _USB_CDC_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**\addtogroup USB_CDC USB CDC class
- * \brief Generic USB CDC class definitions
- * \details This module based on
- * + Universal Serial Bus Class Definitions for Communications Devices Revision 1.2 (Errata 1)
- * @{ */
- /**\name USB CDC Class codes
- * @{ */
- #define USB_CLASS_CDC 0x02 /**< Device/Interface belongs to the Communicational device class */
- #define USB_CLASS_CDC_DATA 0x0A /**< Interface belongs to the Data Interface class */
- /** @} */
- /**\name USB CDC subclass codes
- * @{ */
- #define USB_CDC_SUBCLASS_ACM 0x02 /**< Abstract Control Model */
- /** @} */
- /**\name Communications Class Protocol Codes
- * @{ */
- #define USB_CDC_PROTO_V25TER 0x01 /**< AT Commands: V.250 etc */
- /** @} */
- /** \name Data Interface Class Protocol Codes
- * @{ */
- #define USB_CDC_PROTO_NTB 0x01 /**< Network Transfer Block */
- #define USB_CDC_PROTO_HOST 0xFD /**< Host based driver. \note This protocol code should only be used in messages between
- * host and device to identify the host driver portion of a protocol stack.*/
- #define USB_CDC_PROTO_CDCSPEC 0xFE /**< The protocol(s) are described using a Protocol Unit Functional Descriptors on Communication Class Interface.*/
- /** @} */
- /**\name USB CDC class-specified functional descriptors
- * @{ */
- #define USB_DTYPE_CDC_HEADER 0x00 /**< Header Functional Descriptor. \ref usb_cdc_header_desc */
- #define USB_DTYPE_CDC_CALL_MANAGEMENT 0x01 /**< Call Management Functional Descriptor. \ref usb_cdc_call_mgmt_desc */
- #define USB_DTYPE_CDC_ACM 0x02 /**< Abstract Control Management Functional Descriptor. \ref usb_cdc_acm_desc */
- #define USB_DTYPE_CDC_UNION 0x06 /**< Union Functional descriptor */
- #define USB_DTYPE_CDC_COUNTRY 0x07 /**< Country Selection Functional Descriptor */
- /** @} */
- /** \name USB CDC class-specific requests
- * @{ */
- #define USB_CDC_SEND_ENCAPSULATED_CMD 0x00 /**< Used to issue a command in the format of the supported control protocol of the Communication Class interface. */
- #define USB_CDC_GET_ENCAPSULATED_RESP 0x01 /**< Used to request a response in the format of the supported control protocol of the Communication Class interface. */
- #define USB_CDC_SET_COMM_FEATURE 0x02 /**< Controls the settings for a particular communication feature of a particular target */
- #define USB_CDC_GET_COMM_FEATURE 0x03 /**< Returns the current settings for the communication feature as selected */
- #define USB_CDC_CLEAR_COMM_FEATURE 0x04 /**< Controls the settings for a particular communication feature of a particular
- * target, setting the selected feature to its default state. */
- #define USB_CDC_SET_LINE_CODING 0x20 /**< Allows the host to specify typical asynchronous line-character formatting properties. */
- #define USB_CDC_GET_LINE_CODING 0x21 /**< Allows the host to find out the currently configured line coding. */
- #define USB_CDC_SET_CONTROL_LINE_STATE 0x22 /**< Generates RS-232/V.24 style control signals. */
- #define USB_CDC_SEND_BREAK 0x23 /**< Sends special carrier modulation that generates an RS-232 style break. */
- /** @} */
- /**\name Generic CDC specific notifications
- * @{ */
- #define USB_CDC_NTF_NETWORK_CONNECTION 0x00 /**< Allows the device to notify the host about network connection status. */
- #define USB_CDC_NTF_RESPONSE_AVAILABLE 0x01 /**< Allows the device to notify the host that a response is available. */
- #define USB_CDC_NTF_SERIAL_STATE 0x20 /**< Sends asynchronous notification of UART status. */
- #define USB_CDC_NTF_SPEED_CHANGE 0x2A /**< allows the device to inform the host-networking driver that a change in either the uplink
- * or the downlink bit rate of the connection has occurred. */
- /** @} */
- /**\anchor USB_CDC_ACMGMNTCAP
- * \name USB CDC Abstract Control Management capabilities
- * @{ */
- #define USB_CDC_COMM_FEATURE 0x01 /**< Supports the request combination of Set_Comm_Feature, Clear_Comm_Feature, and Get_Comm_Feature. */
- #define USB_CDC_CAP_LINE 0x02 /**< Supports the request combination of Set_Line_Coding, Set_Control_Line_State, Get_Line_Coding, and the notification Serial_State. */
- #define USB_CDC_CAP_BRK 0x04 /**< Supports the request Send_Break */
- #define USB_CDC_CAP_NOTIFY 0x08 /**< Supports notification Network_Connection. */
- /** @} */
- /**\anchor USB_CDC_CALLMGMTCAP
- * \name USB CDC Call Management capabilities
- * @{ */
- #define USB_CDC_CALL_MGMT_CAP_CALL_MGMT 0x01 /**< Device handles call management itself. */
- #define USB_CDC_CALL_MGMT_CAP_DATA_INTF 0x02 /**< Device can send/receive call management information over a Data Class interface. */
- /** @} */
- /**\anchor USB_CDC_LINECODE
- * \name Line coding structire bit fields
- * @{ */
- #define USB_CDC_1_STOP_BITS 0x00
- #define USB_CDC_1_5_STOP_BITS 0x01
- #define USB_CDC_2_STOP_BITS 0x02
- #define USB_CDC_NO_PARITY 0x00
- #define USB_CDC_ODD_PARITY 0x01
- #define USB_CDC_EVEN_PARITY 0x02
- #define USB_CDC_MARK_PARITY 0x03
- #define USB_CDC_SPACE_PARITY 0x04
- /** @} */
- /**\name SERIAL_STATE notification data values
- * @{ */
- #define USB_CDC_STATE_RX_CARRIER 0x0001 /**< State of receiver carrier detection mechanism of device. This signal corresponds to V.24 signal 109 and RS-232 signal DCD. */
- #define USB_CDC_STATE_TX_CARRIER 0x0002 /**< State of transmission carrier. This signal corresponds to V.24 signal 106 and RS-232 signal DSR. */
- #define USB_CDC_STATE_BREAK 0x0004 /**< State of break detection mechanism of the device. */
- #define USB_CDC_STATE_RING 0x0008 /**< State of ring signal detection of the device. */
- #define USB_CDC_STATE_FRAMING 0x0010 /**< A framing error has occurred. */
- #define USB_CDC_STATE_PARITY 0x0020 /**< A parity error has occurred. */
- #define USB_CDC_STATE_OVERRUN 0x0040 /**< Received data has been discarded due to overrun in the device */
- /** @} */
- /** \brief Header Functional Descriptor
- * \details Header Functional Descriptor marks the beginning of the concatenated set of functional descriptors for the interface. */
- struct usb_cdc_header_desc {
- uint8_t bFunctionLength; /**< Size of this descriptor in bytes. */
- uint8_t bDescriptorType; /**< CS_INTERFACE descriptor type. \see \ref USB_DTYPE_CS_INTERFACE */
- uint8_t bDescriptorSubType; /**< Header functional descriptor subtype \ref USB_DTYPE_CDC_HEADER */
- uint16_t bcdCDC; /**< USB CDC Specification release number in binary-coded decimal. \see \ref VERSION_BCD macro */
- } __attribute__ ((packed));
- /** \brief Union Functional Descriptor
- * \details The Union functional descriptor describes the relationship between a group of interfaces that can be considered to form
- * a functional unit. It can only occur within the class-specific portion of an Interface descriptor. One of the interfaces in
- * the group is designated as a master or controlling interface for the group, and certain class-specific messages can be
- * sent to this interface to act upon the group as a whole.
- */
- struct usb_cdc_union_desc {
- uint8_t bFunctionLength; /**< Size of this functional descriptor, in bytes. */
- uint8_t bDescriptorType; /**< CS_INTERFACE descriptor type. \see \ref USB_DTYPE_CS_INTERFACE */
- uint8_t bDescriptorSubType; /**< Union Functional Descriptor. \ref USB_DTYPE_CDC_UNION */
- uint8_t bMasterInterface0; /**< The interface number of the CDC interface, designated as the master or controlling interface for the union. */
- uint8_t bSlaveInterface0; /**< Interface number of first slave or associated interface in the union. */
- /* ... and there could be other slave interfaces */
- } __attribute__ ((packed));
- /** \brief Country Selection Functional Descriptor
- * \details The Country Selection functional descriptor identifies the countries in which the communication device is qualified to
- * operate. The parameters of the network connection often vary from one country to another, especially in Europe. Also
- * legal requirements impose certain restrictions on devices because of different regulations by the governing body of the
- * network to which the device must adhere. This descriptor can only occur within the class-specific portion of an
- * Interface descriptor and should only be provided to a master Communication Class interface of a union. The country
- * codes used in the Country Selection Functional Descriptor are not the same as the country codes used in dialing
- * international telephone calls. Implementers should refer to the ISO 3166 specification for more information.
- */
- struct usb_cdc_country_desc {
- uint8_t bFunctionLength; /**< Size of this functional descriptor, in bytes. */
- uint8_t bDescriptorType; /**< CS_INTERFACE descriptor type. \see \ref USB_DTYPE_CS_INTERFACE */
- uint8_t bDescriptorSubType; /**< Country Selection Functional Descriptor \ref USB_DTYPE_CDC_COUNTRY */
- uint8_t iCountryCodeRelDate; /**< Index of a string giving the release date for the implemented ISO 3166 Country Codes. */
- uint8_t wCountyCode0; /**< Country code in hexadecimal format as defined in ISO 3166, release date as specified
- * in iCountryCodeRelDate for the first supported country. */
- /* ... and there can be a lot of country codes */
- } __attribute__ ((packed));
- /** \brief Call Management Functional Descriptor.
- * \details The Call Management functional descriptor describes the processing of calls for the Communication Class interface. It
- * can only occur within the class-specific portion of an Interface descriptor.
- */
- struct usb_cdc_call_mgmt_desc {
- uint8_t bFunctionLength; /**< Size of this functional descriptor, in bytes. */
- uint8_t bDescriptorType; /**< CS_INTERFACE descriptor type. \see \ref USB_DTYPE_CS_INTERFACE */
- uint8_t bDescriptorSubType; /**< Call Management functional descriptor subtype \ref USB_DTYPE_CDC_CALL_MANAGEMENT */
- uint8_t bmCapabilities; /**< The \ref USB_CDC_CALLMGMTCAP "capabilities" that this configuration supports */
- uint8_t bDataInterface; /**< Interface number of Data Class interface optionally used for call management. */
- } __attribute__ ((packed));
- /** \brief Abstract Control Management Functional Descriptor
- * \details The Abstract Control Management functional descriptor describes the commands supported by the Communication
- * Class interface, as defined in Section 3.6.2, with the SubClass code of Abstract Control Model. It can only occur
- * within the class-specific portion of an Interface descriptor.
- */
- struct usb_cdc_acm_desc {
- uint8_t bFunctionLength; /**< Size of this functional descriptor, in bytes. */
- uint8_t bDescriptorType; /**< CS_INTERFACE descriptor type. \see \ref USB_DTYPE_CS_INTERFACE */
- uint8_t bDescriptorSubType; /**< Abstract Control Management functional descriptor subtype \ref USB_DTYPE_CDC_ACM */
- uint8_t bmCapabilities; /**< The \ref USB_CDC_ACMGMNTCAP "capabilities" that this configuration supports */
- } __attribute__ ((packed));
- ///\brief Notification structure from CDC
- struct usb_cdc_notification {
- uint8_t bmRequestType;
- uint8_t bNotificationType;
- uint16_t wValue;
- uint16_t wIndex;
- uint16_t wLength;
- uint8_t Data[];
- } __attribute__ ((packed));
- /**\brief Line Coding Structure
- * \details used in GET_LINE_CODING and SET_LINE_CODING requests
- */
- struct usb_cdc_line_coding {
- uint32_t dwDTERate; /**< Data terminal rate, in bits per second. */
- uint8_t bCharFormat; /**< Stop bits */
- uint8_t bParityType; /**< Parity */
- uint8_t bDataBits; /**< Data bits (5,6,7,8 or 16) */
- } __attribute__ ((packed));
- /** @} */
- #ifdef __cplusplus
- }
- #endif
- #endif /* _USB_CDC_H_ */
|