CDCClassHost.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2017.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaims all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. * \brief Host mode driver for the library USB CDC Class driver.
  28. *
  29. * Host mode driver for the library USB CDC Class driver.
  30. *
  31. * \note This file should not be included directly. It is automatically included as needed by the USB module driver
  32. * dispatch header located in LUFA/Drivers/USB.h.
  33. */
  34. /** \ingroup Group_USBClassCDC
  35. * \defgroup Group_USBClassCDCHost CDC Class Host Mode Driver
  36. *
  37. * \section Sec_USBClassCDCHost_Dependencies Module Source Dependencies
  38. * The following files must be built with any user project that uses this module:
  39. * - LUFA/Drivers/USB/Class/Host/CDCClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
  40. *
  41. * \section Sec_USBClassCDCHost_ModDescription Module Description
  42. * Host Mode USB Class driver framework interface, for the CDC USB Class driver.
  43. *
  44. * @{
  45. */
  46. #ifndef __CDC_CLASS_HOST_H__
  47. #define __CDC_CLASS_HOST_H__
  48. /* Includes: */
  49. #include "../../USB.h"
  50. #include "../Common/CDCClassCommon.h"
  51. #include <stdio.h>
  52. /* Enable C linkage for C++ Compilers: */
  53. #if defined(__cplusplus)
  54. extern "C" {
  55. #endif
  56. /* Preprocessor Checks: */
  57. #if !defined(__INCLUDE_FROM_CDC_DRIVER)
  58. #error Do not include this file directly. Include LUFA/Drivers/USB.h instead.
  59. #endif
  60. /* Public Interface - May be used in end-application: */
  61. /* Type Defines: */
  62. /** \brief CDC Class Host Mode Configuration and State Structure.
  63. *
  64. * Class state structure. An instance of this structure should be made within the user application,
  65. * and passed to each of the CDC class driver functions as the \c CDCInterfaceInfo parameter. This
  66. * stores each CDC interface's configuration and state information.
  67. */
  68. typedef struct
  69. {
  70. struct
  71. {
  72. USB_Pipe_Table_t DataINPipe; /**< Data IN Pipe configuration table. */
  73. USB_Pipe_Table_t DataOUTPipe; /**< Data OUT Pipe configuration table. */
  74. USB_Pipe_Table_t NotificationPipe; /**< Notification IN Pipe configuration table. */
  75. } Config; /**< Config data for the USB class interface within the device. All elements in this section
  76. * <b>must</b> be set or the interface will fail to enumerate and operate correctly.
  77. */
  78. struct
  79. {
  80. bool IsActive; /**< Indicates if the current interface instance is connected to an attached device, valid
  81. * after \ref CDC_Host_ConfigurePipes() is called and the Host state machine is in the
  82. * Configured state.
  83. */
  84. uint8_t ControlInterfaceNumber; /**< Interface index of the CDC-ACM control interface within the attached device. */
  85. struct
  86. {
  87. uint16_t HostToDevice; /**< Control line states from the host to device, as a set of \c CDC_CONTROL_LINE_OUT_*
  88. * masks - to notify the device of changes to these values, call the
  89. * \ref CDC_Host_SendControlLineStateChange() function.
  90. */
  91. uint16_t DeviceToHost; /**< Control line states from the device to host, as a set of \c CDC_CONTROL_LINE_IN_*
  92. * masks. This value is updated each time \ref CDC_Host_USBTask() is called.
  93. */
  94. } ControlLineStates; /**< Current states of the virtual serial port's control lines between the device and host. */
  95. CDC_LineEncoding_t LineEncoding; /**< Line encoding used in the virtual serial port, for the device's information.
  96. * This is generally only used if the virtual serial port data is to be
  97. * reconstructed on a physical UART. When set by the host application, the
  98. * \ref CDC_Host_SetLineEncoding() function must be called to push the changes
  99. * to the device.
  100. */
  101. } State; /**< State data for the USB class interface within the device. All elements in this section
  102. * <b>may</b> be set to initial values, but may also be ignored to default to sane values when
  103. * the interface is enumerated.
  104. */
  105. } USB_ClassInfo_CDC_Host_t;
  106. /* Enums: */
  107. /** Enum for the possible error codes returned by the \ref CDC_Host_ConfigurePipes() function. */
  108. enum CDC_Host_EnumerationFailure_ErrorCodes_t
  109. {
  110. CDC_ENUMERROR_NoError = 0, /**< Configuration Descriptor was processed successfully. */
  111. CDC_ENUMERROR_InvalidConfigDescriptor = 1, /**< The device returned an invalid Configuration Descriptor. */
  112. CDC_ENUMERROR_NoCompatibleInterfaceFound = 2, /**< A compatible CDC interface was not found in the device's Configuration Descriptor. */
  113. CDC_ENUMERROR_PipeConfigurationFailed = 3, /**< One or more pipes for the specified interface could not be configured correctly. */
  114. };
  115. /* Function Prototypes: */
  116. /** General management task for a given CDC host class interface, required for the correct operation of the interface. This should
  117. * be called frequently in the main program loop, before the master USB management task \ref USB_USBTask().
  118. *
  119. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing an CDC Class host configuration and state.
  120. */
  121. void CDC_Host_USBTask(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
  122. /** Host interface configuration routine, to configure a given CDC host interface instance using the Configuration
  123. * Descriptor read from an attached USB device. This function automatically updates the given CDC Host instance's
  124. * state values and configures the pipes required to communicate with the interface if it is found within the device.
  125. * This should be called once after the stack has enumerated the attached device, while the host state machine is in
  126. * the Addressed state.
  127. *
  128. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing an CDC Class host configuration and state.
  129. * \param[in] ConfigDescriptorSize Length of the attached device's Configuration Descriptor.
  130. * \param[in] ConfigDescriptorData Pointer to a buffer containing the attached device's Configuration Descriptor.
  131. *
  132. * \return A value from the \ref CDC_Host_EnumerationFailure_ErrorCodes_t enum.
  133. */
  134. uint8_t CDC_Host_ConfigurePipes(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  135. uint16_t ConfigDescriptorSize,
  136. void* ConfigDescriptorData) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(3);
  137. /** Sets the line encoding for the attached device's virtual serial port. This should be called when the \c LineEncoding
  138. * values of the interface have been changed to push the new settings to the USB device.
  139. *
  140. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  141. *
  142. * \return A value from the \ref USB_Host_SendControlErrorCodes_t enum.
  143. */
  144. uint8_t CDC_Host_SetLineEncoding(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
  145. /** Sends a Serial Control Line State Change notification to the device. This should be called when the virtual serial
  146. * control lines (DTR, RTS, etc.) have changed states. Line states persist until they are cleared via a second
  147. * notification. This should be called each time the CDC class driver's \c ControlLineStates.HostToDevice value is updated
  148. * to push the new states to the USB device.
  149. *
  150. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  151. *
  152. * \return A value from the \ref USB_Host_SendControlErrorCodes_t enum.
  153. */
  154. uint8_t CDC_Host_SendControlLineStateChange(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
  155. /** Sends a Send Break request to the device. This is generally used to separate data or to indicate a special condition
  156. * to the receiving device.
  157. *
  158. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  159. * \param[in] Duration Duration of the break, in milliseconds.
  160. *
  161. * \return A value from the \ref USB_Host_SendControlErrorCodes_t enum.
  162. */
  163. uint8_t CDC_Host_SendBreak(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  164. const uint8_t Duration) ATTR_NON_NULL_PTR_ARG(1);
  165. /** Sends a given data buffer to the attached USB device, if connected. If a device is not connected when the function is
  166. * called, the data will be discarded. Bytes will be queued for transmission to the device until either the pipe bank
  167. * becomes full, or the \ref CDC_Host_Flush() function is called to flush the pending data to the device. This allows for
  168. * multiple bytes to be packed into a single pipe packet, increasing data throughput.
  169. *
  170. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
  171. * call will fail.
  172. *
  173. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  174. * \param[in] Buffer Pointer to a buffer containing the data to send to the device.
  175. * \param[in] Length Length of the data to send to the device.
  176. *
  177. * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
  178. */
  179. uint8_t CDC_Host_SendData(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  180. const void* const Buffer,
  181. const uint16_t Length) ATTR_NON_NULL_PTR_ARG(1);
  182. /** Sends a given data buffer from PROGMEM space to the attached USB device, if connected. If a device is not connected when the
  183. * function is called, the string is discarded. Bytes will be queued for transmission to the host until either the pipe
  184. * bank becomes full, or the \ref CDC_Host_Flush() function is called to flush the pending data to the device. This allows
  185. * for multiple bytes to be packed into a single pipe packet, increasing data throughput.
  186. *
  187. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or
  188. * the call will fail.
  189. *
  190. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  191. * \param[in] Buffer Pointer to a buffer containing the data to send to the device.
  192. * \param[in] Length Length of the data to send to the host.
  193. *
  194. * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
  195. */
  196. uint8_t CDC_Host_SendData_P(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  197. const void* const Buffer,
  198. const uint16_t Length) ATTR_NON_NULL_PTR_ARG(1);
  199. /** Sends a given null-terminated string to the attached USB device, if connected. If a device is not connected when the
  200. * function is called, the string is discarded. Bytes will be queued for transmission to the device until either the pipe
  201. * bank becomes full, or the \ref CDC_Host_Flush() function is called to flush the pending data to the device. This allows
  202. * for multiple bytes to be packed into a single pipe packet, increasing data throughput.
  203. *
  204. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
  205. * call will fail.
  206. *
  207. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  208. * \param[in] String Pointer to the null terminated string to send to the device.
  209. *
  210. * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
  211. */
  212. uint8_t CDC_Host_SendString(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  213. const char* const String) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(2);
  214. /** Sends a given null terminated string from PROGMEM space to the attached USB device, if connected. If a device is not connected
  215. * when the function is called, the string is discarded. Bytes will be queued for transmission to the device until either
  216. * the pipe bank becomes full, or the \ref CDC_Host_Flush() function is called to flush the pending data to
  217. * the device. This allows for multiple bytes to be packed into a single pipe packet, increasing data throughput.
  218. *
  219. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or
  220. * the call will fail.
  221. *
  222. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  223. * \param[in] String Pointer to the null terminated string to send to the host.
  224. *
  225. * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
  226. */
  227. uint8_t CDC_Host_SendString_P(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  228. const char* const String) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(2);
  229. /** Sends a given byte to the attached USB device, if connected. If a device is not connected when the function is called, the
  230. * byte is discarded. Bytes will be queued for transmission to the device until either the pipe bank becomes full, or the
  231. * \ref CDC_Host_Flush() function is called to flush the pending data to the host. This allows for multiple bytes to be
  232. * packed into a single pipe packet, increasing data throughput.
  233. *
  234. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
  235. * call will fail.
  236. *
  237. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  238. * \param[in] Data Byte of data to send to the device.
  239. *
  240. * \return A value from the \ref Pipe_WaitUntilReady_ErrorCodes_t enum.
  241. */
  242. uint8_t CDC_Host_SendByte(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  243. const uint8_t Data) ATTR_NON_NULL_PTR_ARG(1);
  244. /** Determines the number of bytes received by the CDC interface from the device, waiting to be read. This indicates the number
  245. * of bytes in the IN pipe bank only, and thus the number of calls to \ref CDC_Host_ReceiveByte() which are guaranteed to succeed
  246. * immediately. If multiple bytes are to be received, they should be buffered by the user application, as the pipe bank will not be
  247. * released back to the USB controller until all bytes are read.
  248. *
  249. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
  250. * call will fail.
  251. *
  252. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  253. *
  254. * \return Total number of buffered bytes received from the device.
  255. */
  256. uint16_t CDC_Host_BytesReceived(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
  257. /** Reads a byte of data from the device. If no data is waiting to be read of if a USB device is not connected, the function
  258. * returns a negative value. The \ref CDC_Host_BytesReceived() function may be queried in advance to determine how many bytes
  259. * are currently buffered in the CDC interface's data receive pipe.
  260. *
  261. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
  262. * call will fail.
  263. *
  264. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  265. *
  266. * \return Next received byte from the device, or a negative value if no data received.
  267. */
  268. int16_t CDC_Host_ReceiveByte(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
  269. /** Flushes any data waiting to be sent, ensuring that the send buffer is cleared.
  270. *
  271. * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
  272. * call will fail.
  273. *
  274. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  275. *
  276. * \return A value from the \ref Pipe_WaitUntilReady_ErrorCodes_t enum.
  277. */
  278. uint8_t CDC_Host_Flush(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
  279. #if defined(FDEV_SETUP_STREAM) || defined(__DOXYGEN__)
  280. /** Creates a standard character stream for the given CDC Device instance so that it can be used with all the regular
  281. * functions in the standard \c <stdio.h> library that accept a \c FILE stream as a destination (e.g. \c fprintf). The created
  282. * stream is bidirectional and can be used for both input and output functions.
  283. *
  284. * Reading data from this stream is non-blocking, i.e. in most instances, complete strings cannot be read in by a single
  285. * fetch, as the endpoint will not be ready at some point in the transmission, aborting the transfer. However, this may
  286. * be used when the read data is processed byte-per-bye (via \c getc()) or when the user application will implement its own
  287. * line buffering.
  288. *
  289. * \note The created stream can be given as \c stdout if desired to direct the standard output from all \c <stdio.h> functions
  290. * to the given CDC interface.
  291. * \n\n
  292. *
  293. * \note This function is not available on all microcontroller architectures.
  294. *
  295. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class configuration and state.
  296. * \param[in,out] Stream Pointer to a FILE structure where the created stream should be placed.
  297. */
  298. void CDC_Host_CreateStream(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  299. FILE* const Stream) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(2);
  300. /** Identical to \ref CDC_Host_CreateStream(), except that reads are blocking until the calling stream function terminates
  301. * the transfer. While blocking, the USB and CDC service tasks are called repeatedly to maintain USB communications.
  302. *
  303. * \note This function is not available on all microcontroller architectures.
  304. *
  305. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class configuration and state.
  306. * \param[in,out] Stream Pointer to a FILE structure where the created stream should be placed.
  307. */
  308. void CDC_Host_CreateBlockingStream(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo,
  309. FILE* const Stream) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(2);
  310. #endif
  311. /** CDC class driver event for a control line state change on a CDC host interface. This event fires each time the device notifies
  312. * the host of a control line state change (containing the virtual serial control line states, such as DCD) and may be hooked in the
  313. * user program by declaring a handler function with the same name and parameters listed here. The new control line states
  314. * are available in the \c ControlLineStates.DeviceToHost value inside the CDC host interface structure passed as a parameter, set as
  315. * a mask of \c CDC_CONTROL_LINE_IN_* masks.
  316. *
  317. * \param[in,out] CDCInterfaceInfo Pointer to a structure containing a CDC Class host configuration and state.
  318. */
  319. void EVENT_CDC_Host_ControLineStateChanged(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
  320. /* Private Interface - For use in library only: */
  321. #if !defined(__DOXYGEN__)
  322. /* Function Prototypes: */
  323. #if defined(__INCLUDE_FROM_CDC_HOST_C)
  324. #if defined(FDEV_SETUP_STREAM)
  325. static int CDC_Host_putchar(char c,
  326. FILE* Stream) ATTR_NON_NULL_PTR_ARG(2);
  327. static int CDC_Host_getchar(FILE* Stream) ATTR_NON_NULL_PTR_ARG(1);
  328. static int CDC_Host_getchar_Blocking(FILE* Stream) ATTR_NON_NULL_PTR_ARG(1);
  329. #endif
  330. void CDC_Host_Event_Stub(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo);
  331. void EVENT_CDC_Host_ControLineStateChanged(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo)
  332. ATTR_WEAK ATTR_NON_NULL_PTR_ARG(1) ATTR_ALIAS(CDC_Host_Event_Stub);
  333. static uint8_t DCOMP_CDC_Host_NextCDCControlInterface(void* const CurrentDescriptor)
  334. ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(1);
  335. static uint8_t DCOMP_CDC_Host_NextCDCDataInterface(void* const CurrentDescriptor)
  336. ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(1);
  337. static uint8_t DCOMP_CDC_Host_NextCDCInterfaceEndpoint(void* const CurrentDescriptor)
  338. ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(1);
  339. #endif
  340. #endif
  341. /* Disable C linkage for C++ Compilers: */
  342. #if defined(__cplusplus)
  343. }
  344. #endif
  345. #endif
  346. /** @} */