3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
32 * \brief USB device endpoint management definitions.
34 * This file contains structures, function prototypes and macros related to the management of the device's
35 * data endpoints when the library is initialized in USB device mode.
37 * \note This file should not be included directly. It is automatically included as needed by the USB driver
38 * dispatch header located in LUFA/Drivers/USB/USB.h.
41 /** \ingroup Group_USB
42 * @defgroup Group_EndpointManagement Endpoint Management
44 * Functions, macros and enums related to endpoint management when in USB Device mode. This
45 * module contains the endpoint management macros, as well as endpoint interrupt and data
46 * send/receive functions for various data types.
51 /** @defgroup Group_EndpointRW Endpoint Data Reading and Writing
53 * Functions, macros, variables, enums and types related to data reading and writing from and to endpoints.
56 /** \ingroup Group_EndpointRW
57 * @defgroup Group_EndpointPrimitiveRW Read/Write of Primitive Data Types
59 * Functions, macros, variables, enums and types related to data reading and writing of primitive data types
60 * from and to endpoints.
63 /** \ingroup Group_EndpointRW
64 * @defgroup Group_EndpointStreamRW Read/Write of Multi-Byte Streams
66 * Functions, macros, variables, enums and types related to data reading and writing of data streams from
70 /** @defgroup Group_EndpointPacketManagement Endpoint Packet Management
72 * Functions, macros, variables, enums and types related to packet management of endpoints.
75 #ifndef __ENDPOINT_H__
76 #define __ENDPOINT_H__
80 #include <avr/pgmspace.h>
81 #include <avr/eeprom.h>
84 #include "../../../Common/Common.h"
85 #include "../HighLevel/USBTask.h"
87 #if !defined(NO_STREAM_CALLBACKS) || defined(__DOXYGEN__)
88 #include "../HighLevel/StreamCallbacks.h"
91 /* Enable C linkage for C++ Compilers: */
92 #if defined(__cplusplus)
96 /* Preprocessor Checks: */
97 #if !defined(__INCLUDE_FROM_USB_DRIVER)
98 #error Do not include this file directly. Include LUFA/Drivers/USB/USB.h instead.
101 /* Public Interface - May be used in end-application: */
103 /** Endpoint data direction mask for \ref Endpoint_ConfigureEndpoint(). This indicates that the endpoint
104 * should be initialized in the OUT direction - i.e. data flows from host to device.
106 #define ENDPOINT_DIR_OUT (0 << EPDIR)
108 /** Endpoint data direction mask for \ref Endpoint_ConfigureEndpoint(). This indicates that the endpoint
109 * should be initialized in the IN direction - i.e. data flows from device to host.
111 #define ENDPOINT_DIR_IN (1 << EPDIR)
113 /** Mask for the bank mode selection for the \ref Endpoint_ConfigureEndpoint() macro. This indicates
114 * that the endpoint should have one single bank, which requires less USB FIFO memory but results
115 * in slower transfers as only one USB device (the AVR or the host) can access the endpoint's
116 * bank at the one time.
118 #define ENDPOINT_BANK_SINGLE (0 << EPBK0)
120 /** Mask for the bank mode selection for the \ref Endpoint_ConfigureEndpoint() macro. This indicates
121 * that the endpoint should have two banks, which requires more USB FIFO memory but results
122 * in faster transfers as one USB device (the AVR or the host) can access one bank while the other
123 * accesses the second bank.
125 #define ENDPOINT_BANK_DOUBLE (1 << EPBK0)
127 /** Endpoint address for the default control endpoint, which always resides in address 0. This is
128 * defined for convenience to give more readable code when used with the endpoint macros.
130 #define ENDPOINT_CONTROLEP 0
132 #if (!defined(FIXED_CONTROL_ENDPOINT_SIZE) || defined(__DOXYGEN__))
133 /** Default size of the default control endpoint's bank, until altered by the Endpoint0Size value
134 * in the device descriptor. Not available if the FIXED_CONTROL_ENDPOINT_SIZE token is defined.
136 #define ENDPOINT_CONTROLEP_DEFAULT_SIZE 8
139 /** Endpoint number mask, for masking against endpoint addresses to retrieve the endpoint's
140 * numerical address in the device.
142 #define ENDPOINT_EPNUM_MASK 0x07
144 /** Endpoint direction mask, for masking against endpoint addresses to retrieve the endpoint's
145 * direction for comparing with the ENDPOINT_DESCRIPTOR_DIR_* masks.
147 #define ENDPOINT_EPDIR_MASK 0x80
149 /** Endpoint bank size mask, for masking against endpoint addresses to retrieve the endpoint's
150 * bank size in the device.
152 #define ENDPOINT_EPSIZE_MASK 0x7FF
154 /** Maximum size in bytes of a given endpoint.
156 * \param[in] n Endpoint number, a value between 0 and (ENDPOINT_TOTAL_ENDPOINTS - 1)
158 #define ENDPOINT_MAX_SIZE(n) _ENDPOINT_GET_MAXSIZE(n)
160 /** Indicates if the given endpoint supports double banking.
162 * \param[in] n Endpoint number, a value between 0 and (ENDPOINT_TOTAL_ENDPOINTS - 1)
164 #define ENDPOINT_DOUBLEBANK_SUPPORTED(n) _ENDPOINT_GET_DOUBLEBANK(n)
166 #if !defined(CONTROL_ONLY_DEVICE)
167 #if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR) || defined(__DOXYGEN__)
168 /** Total number of endpoints (including the default control endpoint at address 0) which may
169 * be used in the device. Different USB AVR models support different amounts of endpoints,
170 * this value reflects the maximum number of endpoints for the currently selected AVR model.
172 #define ENDPOINT_TOTAL_ENDPOINTS 7
174 #define ENDPOINT_TOTAL_ENDPOINTS 5
177 #define ENDPOINT_TOTAL_ENDPOINTS 1
180 /* Pseudo-Function Macros: */
181 #if defined(__DOXYGEN__)
182 /** Indicates the number of bytes currently stored in the current endpoint's selected bank.
184 * \note The return width of this function may differ, depending on the maximum endpoint bank size
185 * of the selected AVR model.
187 * \ingroup Group_EndpointRW
189 * \return Total number of bytes in the currently selected Endpoint's FIFO buffer
191 static inline uint16_t Endpoint_BytesInEndpoint(void);
193 /** Get the endpoint address of the currently selected endpoint. This is typically used to save
194 * the currently selected endpoint number so that it can be restored after another endpoint has
197 * \return Index of the currently selected endpoint
199 static inline uint8_t Endpoint_GetCurrentEndpoint(void);
201 /** Selects the given endpoint number. If the address from the device descriptors is used, the
202 * value should be masked with the \ref ENDPOINT_EPNUM_MASK constant to extract only the endpoint
203 * number (and discarding the endpoint direction bit).
205 * Any endpoint operations which do not require the endpoint number to be indicated will operate on
206 * the currently selected endpoint.
208 * \param[in] EndpointNumber Endpoint number to select
210 static inline void Endpoint_SelectEndpoint(uint8_t EndpointNumber
);
212 /** Resets the endpoint bank FIFO. This clears all the endpoint banks and resets the USB controller's
213 * In and Out pointers to the bank's contents.
215 * \param[in] EndpointNumber Endpoint number whose FIFO buffers are to be reset
217 static inline void Endpoint_ResetFIFO(uint8_t EndpointNumber
);
219 /** Enables the currently selected endpoint so that data can be sent and received through it to
222 * \note Endpoints must first be configured properly via \ref Endpoint_ConfigureEndpoint().
224 static inline void Endpoint_EnableEndpoint(void);
226 /** Disables the currently selected endpoint so that data cannot be sent and received through it
227 * to and from a host.
229 static inline void Endpoint_DisableEndpoint(void);
231 /** Determines if the currently selected endpoint is enabled, but not necessarily configured.
233 * \return Boolean True if the currently selected endpoint is enabled, false otherwise
235 static inline bool Endpoint_IsEnabled(void);
237 /** Determines if the currently selected endpoint may be read from (if data is waiting in the endpoint
238 * bank and the endpoint is an OUT direction, or if the bank is not yet full if the endpoint is an IN
239 * direction). This function will return false if an error has occurred in the endpoint, if the endpoint
240 * is an OUT direction and no packet (or an empty packet) has been received, or if the endpoint is an IN
241 * direction and the endpoint bank is full.
243 * \ingroup Group_EndpointPacketManagement
245 * \return Boolean true if the currently selected endpoint may be read from or written to, depending on its direction
247 static inline bool Endpoint_IsReadWriteAllowed(void);
249 /** Determines if the currently selected endpoint is configured.
251 * \return Boolean true if the currently selected endpoint has been configured, false otherwise
253 static inline bool Endpoint_IsConfigured(void);
255 /** Returns a mask indicating which INTERRUPT type endpoints have interrupted - i.e. their
256 * interrupt duration has elapsed. Which endpoints have interrupted can be determined by
257 * masking the return value against (1 << {Endpoint Number}).
259 * \return Mask whose bits indicate which endpoints have interrupted
261 static inline uint8_t Endpoint_GetEndpointInterrupts(void);
263 /** Determines if the specified endpoint number has interrupted (valid only for INTERRUPT type
266 * \param[in] EndpointNumber Index of the endpoint whose interrupt flag should be tested
268 * \return Boolean true if the specified endpoint has interrupted, false otherwise
270 static inline bool Endpoint_HasEndpointInterrupted(uint8_t EndpointNumber
);
272 /** Determines if the selected IN endpoint is ready for a new packet.
274 * \ingroup Group_EndpointPacketManagement
276 * \return Boolean true if the current endpoint is ready for an IN packet, false otherwise.
278 static inline bool Endpoint_IsINReady(void);
280 /** Determines if the selected OUT endpoint has received new packet.
282 * \ingroup Group_EndpointPacketManagement
284 * \return Boolean true if current endpoint is has received an OUT packet, false otherwise.
286 static inline bool Endpoint_IsOUTReceived(void);
288 /** Determines if the current CONTROL type endpoint has received a SETUP packet.
290 * \ingroup Group_EndpointPacketManagement
292 * \return Boolean true if the selected endpoint has received a SETUP packet, false otherwise.
294 static inline bool Endpoint_IsSETUPReceived(void);
296 /** Clears a received SETUP packet on the currently selected CONTROL type endpoint, freeing up the
297 * endpoint for the next packet.
299 * \ingroup Group_EndpointPacketManagement
301 * \note This is not applicable for non CONTROL type endpoints.
303 static inline void Endpoint_ClearSETUP(void);
305 /** Sends an IN packet to the host on the currently selected endpoint, freeing up the endpoint for the
306 * next packet and switching to the alternative endpoint bank if double banked.
308 * \ingroup Group_EndpointPacketManagement
310 static inline void Endpoint_ClearIN(void);
312 /** Acknowledges an OUT packet to the host on the currently selected endpoint, freeing up the endpoint
313 * for the next packet and switching to the alternative endpoint bank if double banked.
315 * \ingroup Group_EndpointPacketManagement
317 static inline void Endpoint_ClearOUT(void);
319 /** Stalls the current endpoint, indicating to the host that a logical problem occurred with the
320 * indicated endpoint and that the current transfer sequence should be aborted. This provides a
321 * way for devices to indicate invalid commands to the host so that the current transfer can be
322 * aborted and the host can begin its own recovery sequence.
324 * The currently selected endpoint remains stalled until either the \ref Endpoint_ClearStall() macro
325 * is called, or the host issues a CLEAR FEATURE request to the device for the currently selected
328 * \ingroup Group_EndpointPacketManagement
330 static inline void Endpoint_StallTransaction(void);
332 /** Clears the STALL condition on the currently selected endpoint.
334 * \ingroup Group_EndpointPacketManagement
336 static inline void Endpoint_ClearStall(void);
338 /** Determines if the currently selected endpoint is stalled, false otherwise.
340 * \ingroup Group_EndpointPacketManagement
342 * \return Boolean true if the currently selected endpoint is stalled, false otherwise
344 static inline bool Endpoint_IsStalled(void);
346 /** Resets the data toggle of the currently selected endpoint. */
347 static inline void Endpoint_ResetDataToggle(void);
349 /** Determines the currently selected endpoint's direction.
351 * \return The currently selected endpoint's direction, as a ENDPOINT_DIR_* mask.
353 static inline uint8_t Endpoint_GetEndpointDirection(void);
355 /** Sets the direction of the currently selected endpoint.
357 * \param[in] DirectionMask New endpoint direction, as a ENDPOINT_DIR_* mask.
359 static inline void Endpoint_SetEndpointDirection(uint8_t DirectionMask
);
361 #if defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)
362 #define Endpoint_BytesInEndpoint() UEBCX
363 #elif defined(USB_SERIES_4_AVR)
364 #define Endpoint_BytesInEndpoint() (((uint16_t)UEBCHX << 8) | UEBCLX)
365 #elif defined(USB_SERIES_2_AVR)
366 #define Endpoint_BytesInEndpoint() UEBCLX
369 #if !defined(CONTROL_ONLY_DEVICE)
370 #define Endpoint_GetCurrentEndpoint() (UENUM & ENDPOINT_EPNUM_MASK)
372 #define Endpoint_GetCurrentEndpoint() ENDPOINT_CONTROLEP
375 #if !defined(CONTROL_ONLY_DEVICE)
376 #define Endpoint_SelectEndpoint(epnum) MACROS{ UENUM = (epnum); }MACROE
378 #define Endpoint_SelectEndpoint(epnum) (void)(epnum)
381 #define Endpoint_ResetFIFO(epnum) MACROS{ UERST = (1 << (epnum)); UERST = 0; }MACROE
383 #define Endpoint_EnableEndpoint() MACROS{ UECONX |= (1 << EPEN); }MACROE
385 #define Endpoint_DisableEndpoint() MACROS{ UECONX &= ~(1 << EPEN); }MACROE
387 #define Endpoint_IsEnabled() ((UECONX & (1 << EPEN)) ? true : false)
389 #if !defined(CONTROL_ONLY_DEVICE)
390 #define Endpoint_IsReadWriteAllowed() ((UEINTX & (1 << RWAL)) ? true : false)
393 #define Endpoint_IsConfigured() ((UESTA0X & (1 << CFGOK)) ? true : false)
395 #define Endpoint_GetEndpointInterrupts() UEINT
397 #define Endpoint_HasEndpointInterrupted(n) ((UEINT & (1 << (n))) ? true : false)
399 #define Endpoint_IsINReady() ((UEINTX & (1 << TXINI)) ? true : false)
401 #define Endpoint_IsOUTReceived() ((UEINTX & (1 << RXOUTI)) ? true : false)
403 #define Endpoint_IsSETUPReceived() ((UEINTX & (1 << RXSTPI)) ? true : false)
405 #define Endpoint_ClearSETUP() MACROS{ UEINTX &= ~(1 << RXSTPI); }MACROE
407 #if !defined(CONTROL_ONLY_DEVICE)
408 #define Endpoint_ClearIN() MACROS{ UEINTX &= ~((1 << TXINI) | (1 << FIFOCON)); }MACROE
410 #define Endpoint_ClearIN() MACROS{ UEINTX &= ~(1 << TXINI); }MACROE
413 #if !defined(CONTROL_ONLY_DEVICE)
414 #define Endpoint_ClearOUT() MACROS{ UEINTX &= ~((1 << RXOUTI) | (1 << FIFOCON)); }MACROE
416 #define Endpoint_ClearOUT() MACROS{ UEINTX &= ~(1 << RXOUTI); }MACROE
419 #define Endpoint_StallTransaction() MACROS{ UECONX |= (1 << STALLRQ); }MACROE
421 #define Endpoint_ClearStall() MACROS{ UECONX |= (1 << STALLRQC); }MACROE
423 #define Endpoint_IsStalled() ((UECONX & (1 << STALLRQ)) ? true : false)
425 #define Endpoint_ResetDataToggle() MACROS{ UECONX |= (1 << RSTDT); }MACROE
427 #define Endpoint_GetEndpointDirection() (UECFG0X & ENDPOINT_DIR_IN)
429 #define Endpoint_SetEndpointDirection(dir) MACROS{ UECFG0X = ((UECFG0X & ~ENDPOINT_DIR_IN) | (dir)); }MACROE
433 /** Enum for the possible error return codes of the \ref Endpoint_WaitUntilReady() function.
435 * \ingroup Group_EndpointRW
437 enum Endpoint_WaitUntilReady_ErrorCodes_t
439 ENDPOINT_READYWAIT_NoError
= 0, /**< Endpoint is ready for next packet, no error. */
440 ENDPOINT_READYWAIT_EndpointStalled
= 1, /**< The endpoint was stalled during the stream
441 * transfer by the host or device.
443 ENDPOINT_READYWAIT_DeviceDisconnected
= 2, /**< Device was disconnected from the host while
444 * waiting for the endpoint to become ready.
446 ENDPOINT_READYWAIT_Timeout
= 3, /**< The host failed to accept or send the next packet
447 * within the software timeout period set by the
448 * \ref USB_STREAM_TIMEOUT_MS macro.
452 /** Enum for the possible error return codes of the Endpoint_*_Stream_* functions.
454 * \ingroup Group_EndpointStreamRW
456 enum Endpoint_Stream_RW_ErrorCodes_t
458 ENDPOINT_RWSTREAM_NoError
= 0, /**< Command completed successfully, no error. */
459 ENDPOINT_RWSTREAM_EndpointStalled
= 1, /**< The endpoint was stalled during the stream
460 * transfer by the host or device.
462 ENDPOINT_RWSTREAM_DeviceDisconnected
= 2, /**< Device was disconnected from the host during
465 ENDPOINT_RWSTREAM_Timeout
= 3, /**< The host failed to accept or send the next packet
466 * within the software timeout period set by the
467 * \ref USB_STREAM_TIMEOUT_MS macro.
469 ENDPOINT_RWSTREAM_CallbackAborted
= 4, /**< Indicates that the stream's callback function
470 * aborted the transfer early.
474 /** Enum for the possible error return codes of the Endpoint_*_Control_Stream_* functions..
476 * \ingroup Group_EndpointStreamRW
478 enum Endpoint_ControlStream_RW_ErrorCodes_t
480 ENDPOINT_RWCSTREAM_NoError
= 0, /**< Command completed successfully, no error. */
481 ENDPOINT_RWCSTREAM_HostAborted
= 1, /**< The aborted the transfer prematurely. */
482 ENDPOINT_RWCSTREAM_DeviceDisconnected
= 2, /**< Device was disconnected from the host during
487 /* Inline Functions: */
488 /** Reads one byte from the currently selected endpoint's bank, for OUT direction endpoints.
490 * \ingroup Group_EndpointPrimitiveRW
492 * \return Next byte in the currently selected endpoint's FIFO buffer
494 static inline uint8_t Endpoint_Read_Byte(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
;
495 static inline uint8_t Endpoint_Read_Byte(void)
500 /** Writes one byte from the currently selected endpoint's bank, for IN direction endpoints.
502 * \ingroup Group_EndpointPrimitiveRW
504 * \param[in] Byte Next byte to write into the the currently selected endpoint's FIFO buffer
506 static inline void Endpoint_Write_Byte(const uint8_t Byte
) ATTR_ALWAYS_INLINE
;
507 static inline void Endpoint_Write_Byte(const uint8_t Byte
)
512 /** Discards one byte from the currently selected endpoint's bank, for OUT direction endpoints.
514 * \ingroup Group_EndpointPrimitiveRW
516 static inline void Endpoint_Discard_Byte(void) ATTR_ALWAYS_INLINE
;
517 static inline void Endpoint_Discard_Byte(void)
524 /** Reads two bytes from the currently selected endpoint's bank in little endian format, for OUT
525 * direction endpoints.
527 * \ingroup Group_EndpointPrimitiveRW
529 * \return Next word in the currently selected endpoint's FIFO buffer
531 static inline uint16_t Endpoint_Read_Word_LE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
;
532 static inline uint16_t Endpoint_Read_Word_LE(void)
540 Data
.Bytes
[0] = UEDATX
;
541 Data
.Bytes
[1] = UEDATX
;
546 /** Reads two bytes from the currently selected endpoint's bank in big endian format, for OUT
547 * direction endpoints.
549 * \ingroup Group_EndpointPrimitiveRW
551 * \return Next word in the currently selected endpoint's FIFO buffer
553 static inline uint16_t Endpoint_Read_Word_BE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
;
554 static inline uint16_t Endpoint_Read_Word_BE(void)
562 Data
.Bytes
[1] = UEDATX
;
563 Data
.Bytes
[0] = UEDATX
;
568 /** Writes two bytes to the currently selected endpoint's bank in little endian format, for IN
569 * direction endpoints.
571 * \ingroup Group_EndpointPrimitiveRW
573 * \param[in] Word Next word to write to the currently selected endpoint's FIFO buffer
575 static inline void Endpoint_Write_Word_LE(const uint16_t Word
) ATTR_ALWAYS_INLINE
;
576 static inline void Endpoint_Write_Word_LE(const uint16_t Word
)
578 UEDATX
= (Word
& 0xFF);
579 UEDATX
= (Word
>> 8);
582 /** Writes two bytes to the currently selected endpoint's bank in big endian format, for IN
583 * direction endpoints.
585 * \ingroup Group_EndpointPrimitiveRW
587 * \param[in] Word Next word to write to the currently selected endpoint's FIFO buffer
589 static inline void Endpoint_Write_Word_BE(const uint16_t Word
) ATTR_ALWAYS_INLINE
;
590 static inline void Endpoint_Write_Word_BE(const uint16_t Word
)
592 UEDATX
= (Word
>> 8);
593 UEDATX
= (Word
& 0xFF);
596 /** Discards two bytes from the currently selected endpoint's bank, for OUT direction endpoints.
598 * \ingroup Group_EndpointPrimitiveRW
600 static inline void Endpoint_Discard_Word(void) ATTR_ALWAYS_INLINE
;
601 static inline void Endpoint_Discard_Word(void)
609 /** Reads four bytes from the currently selected endpoint's bank in little endian format, for OUT
610 * direction endpoints.
612 * \ingroup Group_EndpointPrimitiveRW
614 * \return Next double word in the currently selected endpoint's FIFO buffer
616 static inline uint32_t Endpoint_Read_DWord_LE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
;
617 static inline uint32_t Endpoint_Read_DWord_LE(void)
625 Data
.Bytes
[0] = UEDATX
;
626 Data
.Bytes
[1] = UEDATX
;
627 Data
.Bytes
[2] = UEDATX
;
628 Data
.Bytes
[3] = UEDATX
;
633 /** Reads four bytes from the currently selected endpoint's bank in big endian format, for OUT
634 * direction endpoints.
636 * \ingroup Group_EndpointPrimitiveRW
638 * \return Next double word in the currently selected endpoint's FIFO buffer
640 static inline uint32_t Endpoint_Read_DWord_BE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
;
641 static inline uint32_t Endpoint_Read_DWord_BE(void)
649 Data
.Bytes
[3] = UEDATX
;
650 Data
.Bytes
[2] = UEDATX
;
651 Data
.Bytes
[1] = UEDATX
;
652 Data
.Bytes
[0] = UEDATX
;
657 /** Writes four bytes to the currently selected endpoint's bank in little endian format, for IN
658 * direction endpoints.
660 * \ingroup Group_EndpointPrimitiveRW
662 * \param[in] DWord Next double word to write to the currently selected endpoint's FIFO buffer
664 static inline void Endpoint_Write_DWord_LE(const uint32_t DWord
) ATTR_ALWAYS_INLINE
;
665 static inline void Endpoint_Write_DWord_LE(const uint32_t DWord
)
667 UEDATX
= (DWord
& 0xFF);
668 UEDATX
= (DWord
>> 8);
669 UEDATX
= (DWord
>> 16);
670 UEDATX
= (DWord
>> 24);
673 /** Writes four bytes to the currently selected endpoint's bank in big endian format, for IN
674 * direction endpoints.
676 * \ingroup Group_EndpointPrimitiveRW
678 * \param[in] DWord Next double word to write to the currently selected endpoint's FIFO buffer
680 static inline void Endpoint_Write_DWord_BE(const uint32_t DWord
) ATTR_ALWAYS_INLINE
;
681 static inline void Endpoint_Write_DWord_BE(const uint32_t DWord
)
683 UEDATX
= (DWord
>> 24);
684 UEDATX
= (DWord
>> 16);
685 UEDATX
= (DWord
>> 8);
686 UEDATX
= (DWord
& 0xFF);
689 /** Discards four bytes from the currently selected endpoint's bank, for OUT direction endpoints.
691 * \ingroup Group_EndpointPrimitiveRW
693 static inline void Endpoint_Discard_DWord(void) ATTR_ALWAYS_INLINE
;
694 static inline void Endpoint_Discard_DWord(void)
704 /* External Variables: */
705 /** Global indicating the maximum packet size of the default control endpoint located at address
706 * 0 in the device. This value is set to the value indicated in the device descriptor in the user
707 * project once the USB interface is initialized into device mode.
709 * If space is an issue, it is possible to fix this to a static value by defining the control
710 * endpoint size in the FIXED_CONTROL_ENDPOINT_SIZE token passed to the compiler in the makefile
711 * via the -D switch. When a fixed control endpoint size is used, the size is no longer dynamically
712 * read from the descriptors at runtime and instead fixed to the given value. When used, it is
713 * important that the descriptor control endpoint size value matches the size given as the
714 * FIXED_CONTROL_ENDPOINT_SIZE token - it is recommended that the FIXED_CONTROL_ENDPOINT_SIZE token
715 * be used in the descriptors to ensure this.
717 * \note This variable should be treated as read-only in the user application, and never manually
720 #if (!defined(FIXED_CONTROL_ENDPOINT_SIZE) || defined(__DOXYGEN__))
721 extern uint8_t USB_ControlEndpointSize
;
723 #define USB_ControlEndpointSize FIXED_CONTROL_ENDPOINT_SIZE
726 /* Function Prototypes: */
727 #if !defined(NO_STREAM_CALLBACKS) || defined(__DOXYGEN__)
728 #define __CALLBACK_PARAM , StreamCallbackPtr_t Callback
730 #define __CALLBACK_PARAM
733 /** Configures the specified endpoint number with the given endpoint type, direction, bank size
734 * and banking mode. Endpoints should be allocated in ascending order by their address in the
735 * device (i.e. endpoint 1 should be configured before endpoint 2 and so on) to prevent fragmentation
736 * of the USB FIFO memory.
738 * The endpoint type may be one of the EP_TYPE_* macros listed in LowLevel.h and the direction
739 * may be either \ref ENDPOINT_DIR_OUT or \ref ENDPOINT_DIR_IN.
741 * The bank size must indicate the maximum packet size that the endpoint can handle. Different
742 * endpoint numbers can handle different maximum packet sizes - refer to the chosen USB AVR's
743 * datasheet to determine the maximum bank size for each endpoint.
745 * The banking mode may be either \ref ENDPOINT_BANK_SINGLE or \ref ENDPOINT_BANK_DOUBLE.
747 * \note The default control endpoint does not have to be manually configured, as it is automatically
748 * configured by the library internally.
751 * \note This routine will select the specified endpoint, and the endpoint will remain selected
752 * once the routine completes regardless of if the endpoint configuration succeeds.
754 * \return Boolean true if the configuration succeeded, false otherwise
756 bool Endpoint_ConfigureEndpoint(const uint8_t Number
, const uint8_t Type
, const uint8_t Direction
,
757 const uint16_t Size
, const uint8_t Banks
);
759 /** Spin-loops until the currently selected non-control endpoint is ready for the next packet of data
760 * to be read or written to it.
762 * \note This routine should not be called on CONTROL type endpoints.
764 * \ingroup Group_EndpointRW
766 * \return A value from the \ref Endpoint_WaitUntilReady_ErrorCodes_t enum.
768 uint8_t Endpoint_WaitUntilReady(void);
770 /** Completes the status stage of a control transfer on a CONTROL type endpoint automatically,
771 * with respect to the data direction. This is a convenience function which can be used to
772 * simplify user control request handling.
774 void Endpoint_ClearStatusStage(void);
776 /** Reads and discards the given number of bytes from the endpoint from the given buffer,
777 * discarding fully read packets from the host as needed. The last packet is not automatically
778 * discarded once the remaining bytes has been read; the user is responsible for manually
779 * discarding the last packet from the host via the \ref Endpoint_ClearOUT() macro. Between
780 * each USB packet, the given stream callback function is executed repeatedly until the next
781 * packet is ready, allowing for early aborts of stream transfers.
783 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
784 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
785 * disabled and this function has the Callback parameter omitted.
787 * \note This routine should not be used on CONTROL type endpoints.
789 * \ingroup Group_EndpointStreamRW
791 * \param[in] Length Number of bytes to send via the currently selected endpoint.
792 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
794 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
796 uint8_t Endpoint_Discard_Stream(uint16_t Length __CALLBACK_PARAM
);
798 /** Writes the given number of bytes to the endpoint from the given buffer in little endian,
799 * sending full packets to the host as needed. The last packet filled is not automatically sent;
800 * the user is responsible for manually sending the last written packet to the host via the
801 * \ref Endpoint_ClearIN() macro. Between each USB packet, the given stream callback function
802 * is executed repeatedly until the endpoint is ready to accept the next packet, allowing for early
803 * aborts of stream transfers.
805 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
806 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
807 * disabled and this function has the Callback parameter omitted.
809 * \note This routine should not be used on CONTROL type endpoints.
811 * \ingroup Group_EndpointStreamRW
813 * \param[in] Buffer Pointer to the source data buffer to read from.
814 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
815 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
817 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
819 uint8_t Endpoint_Write_Stream_LE(const void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
821 /** EEPROM buffer source version of \ref Endpoint_Write_Stream_LE().
823 * \ingroup Group_EndpointStreamRW
825 * \param[in] Buffer Pointer to the source data buffer to read from.
826 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
827 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
829 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
831 uint8_t Endpoint_Write_EStream_LE(const void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
833 /** FLASH buffer source version of \ref Endpoint_Write_Stream_LE().
835 * \note The FLASH data must be located in the first 64KB of FLASH for this function to work correctly.
837 * \ingroup Group_EndpointStreamRW
839 * \param[in] Buffer Pointer to the source data buffer to read from.
840 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
841 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
843 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
845 uint8_t Endpoint_Write_PStream_LE(const void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
847 /** Writes the given number of bytes to the endpoint from the given buffer in big endian,
848 * sending full packets to the host as needed. The last packet filled is not automatically sent;
849 * the user is responsible for manually sending the last written packet to the host via the
850 * \ref Endpoint_ClearIN() macro. Between each USB packet, the given stream callback function
851 * is executed repeatedly until the endpoint is ready to accept the next packet, allowing for early
852 * aborts of stream transfers.
854 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
855 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
856 * disabled and this function has the Callback parameter omitted.
858 * \note This routine should not be used on CONTROL type endpoints.
860 * \ingroup Group_EndpointStreamRW
862 * \param[in] Buffer Pointer to the source data buffer to read from.
863 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
864 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
866 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
868 uint8_t Endpoint_Write_Stream_BE(const void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
870 /** EEPROM buffer source version of \ref Endpoint_Write_Stream_BE().
872 * \ingroup Group_EndpointStreamRW
874 * \param[in] Buffer Pointer to the source data buffer to read from.
875 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
876 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
878 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
880 uint8_t Endpoint_Write_EStream_BE(const void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
882 /** FLASH buffer source version of \ref Endpoint_Write_Stream_BE().
884 * \note The FLASH data must be located in the first 64KB of FLASH for this function to work correctly.
886 * \ingroup Group_EndpointStreamRW
888 * \param[in] Buffer Pointer to the source data buffer to read from.
889 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
890 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
892 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
894 uint8_t Endpoint_Write_PStream_BE(const void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
896 /** Reads the given number of bytes from the endpoint from the given buffer in little endian,
897 * discarding fully read packets from the host as needed. The last packet is not automatically
898 * discarded once the remaining bytes has been read; the user is responsible for manually
899 * discarding the last packet from the host via the \ref Endpoint_ClearOUT() macro. Between
900 * each USB packet, the given stream callback function is executed repeatedly until the endpoint
901 * is ready to accept the next packet, allowing for early aborts of stream transfers.
903 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
904 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
905 * disabled and this function has the Callback parameter omitted.
907 * \note This routine should not be used on CONTROL type endpoints.
909 * \ingroup Group_EndpointStreamRW
911 * \param[out] Buffer Pointer to the destination data buffer to write to.
912 * \param[in] Length Number of bytes to send via the currently selected endpoint.
913 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
915 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
917 uint8_t Endpoint_Read_Stream_LE(void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
919 /** EEPROM buffer source version of \ref Endpoint_Read_Stream_LE().
921 * \ingroup Group_EndpointStreamRW
923 * \param[out] Buffer Pointer to the destination data buffer to write to, located in EEPROM memory space.
924 * \param[in] Length Number of bytes to send via the currently selected endpoint.
925 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
927 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
929 uint8_t Endpoint_Read_EStream_LE(void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
931 /** Reads the given number of bytes from the endpoint from the given buffer in big endian,
932 * discarding fully read packets from the host as needed. The last packet is not automatically
933 * discarded once the remaining bytes has been read; the user is responsible for manually
934 * discarding the last packet from the host via the \ref Endpoint_ClearOUT() macro. Between
935 * each USB packet, the given stream callback function is executed repeatedly until the endpoint
936 * is ready to accept the next packet, allowing for early aborts of stream transfers.
938 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
939 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
940 * disabled and this function has the Callback parameter omitted.
942 * \note This routine should not be used on CONTROL type endpoints.
944 * \ingroup Group_EndpointStreamRW
946 * \param[out] Buffer Pointer to the destination data buffer to write to.
947 * \param[in] Length Number of bytes to send via the currently selected endpoint.
948 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
950 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
952 uint8_t Endpoint_Read_Stream_BE(void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
954 /** EEPROM buffer source version of \ref Endpoint_Read_Stream_BE().
956 * \ingroup Group_EndpointStreamRW
958 * \param[out] Buffer Pointer to the destination data buffer to write to, located in EEPROM memory space.
959 * \param[in] Length Number of bytes to send via the currently selected endpoint.
960 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
962 * \return A value from the \ref Endpoint_Stream_RW_ErrorCodes_t enum.
964 uint8_t Endpoint_Read_EStream_BE(void* Buffer
, uint16_t Length __CALLBACK_PARAM
) ATTR_NON_NULL_PTR_ARG(1);
966 /** Writes the given number of bytes to the CONTROL type endpoint from the given buffer in little endian,
967 * sending full packets to the host as needed. The host OUT acknowledgement is not automatically cleared
968 * in both failure and success states; the user is responsible for manually clearing the setup OUT to
969 * finalize the transfer via the \ref Endpoint_ClearOUT() macro.
971 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
972 * to clear the status stage when using this routine in a control transaction.
975 * \note This routine should only be used on CONTROL type endpoints.
977 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
978 * together; i.e. the entire stream data must be read or written at the one time.
980 * \ingroup Group_EndpointStreamRW
982 * \param[in] Buffer Pointer to the source data buffer to read from.
983 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
985 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
987 uint8_t Endpoint_Write_Control_Stream_LE(const void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
989 /** EEPROM buffer source version of Endpoint_Write_Control_Stream_LE.
991 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
992 * to clear the status stage when using this routine in a control transaction.
995 * \note This routine should only be used on CONTROL type endpoints.
997 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
998 * together; i.e. the entire stream data must be read or written at the one time.
1000 * \ingroup Group_EndpointStreamRW
1002 * \param[in] Buffer Pointer to the source data buffer to read from.
1003 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
1005 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1007 uint8_t Endpoint_Write_Control_EStream_LE(const void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1009 /** FLASH buffer source version of \ref Endpoint_Write_Control_Stream_LE().
1011 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1012 * to clear the status stage when using this routine in a control transaction.
1015 * \note The FLASH data must be located in the first 64KB of FLASH for this function to work correctly.
1018 * \note This routine should only be used on CONTROL type endpoints.
1020 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1021 * together; i.e. the entire stream data must be read or written at the one time.
1023 * \ingroup Group_EndpointStreamRW
1025 * \param[in] Buffer Pointer to the source data buffer to read from.
1026 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
1028 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1030 uint8_t Endpoint_Write_Control_PStream_LE(const void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1032 /** Writes the given number of bytes to the CONTROL type endpoint from the given buffer in big endian,
1033 * sending full packets to the host as needed. The host OUT acknowledgement is not automatically cleared
1034 * in both failure and success states; the user is responsible for manually clearing the setup OUT to
1035 * finalize the transfer via the \ref Endpoint_ClearOUT() macro.
1037 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1038 * to clear the status stage when using this routine in a control transaction.
1041 * \note This routine should only be used on CONTROL type endpoints.
1043 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1044 * together; i.e. the entire stream data must be read or written at the one time.
1046 * \ingroup Group_EndpointStreamRW
1048 * \param[in] Buffer Pointer to the source data buffer to read from.
1049 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
1051 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1053 uint8_t Endpoint_Write_Control_Stream_BE(const void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1055 /** EEPROM buffer source version of \ref Endpoint_Write_Control_Stream_BE().
1057 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1058 * to clear the status stage when using this routine in a control transaction.
1061 * \note This routine should only be used on CONTROL type endpoints.
1063 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1064 * together; i.e. the entire stream data must be read or written at the one time.
1066 * \ingroup Group_EndpointStreamRW
1068 * \param[in] Buffer Pointer to the source data buffer to read from.
1069 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
1071 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1073 uint8_t Endpoint_Write_Control_EStream_BE(const void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1075 /** FLASH buffer source version of \ref Endpoint_Write_Control_Stream_BE().
1077 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1078 * to clear the status stage when using this routine in a control transaction.
1081 * \note The FLASH data must be located in the first 64KB of FLASH for this function to work correctly.
1084 * \note This routine should only be used on CONTROL type endpoints.
1086 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1087 * together; i.e. the entire stream data must be read or written at the one time.
1089 * \ingroup Group_EndpointStreamRW
1091 * \param[in] Buffer Pointer to the source data buffer to read from.
1092 * \param[in] Length Number of bytes to read for the currently selected endpoint into the buffer.
1094 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1096 uint8_t Endpoint_Write_Control_PStream_BE(const void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1098 /** Reads the given number of bytes from the CONTROL endpoint from the given buffer in little endian,
1099 * discarding fully read packets from the host as needed. The device IN acknowledgement is not
1100 * automatically sent after success or failure states; the user is responsible for manually sending the
1101 * setup IN to finalize the transfer via the \ref Endpoint_ClearIN() macro.
1103 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1104 * to clear the status stage when using this routine in a control transaction.
1107 * \note This routine should only be used on CONTROL type endpoints.
1109 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1110 * together; i.e. the entire stream data must be read or written at the one time.
1112 * \ingroup Group_EndpointStreamRW
1114 * \param[out] Buffer Pointer to the destination data buffer to write to.
1115 * \param[in] Length Number of bytes to send via the currently selected endpoint.
1117 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1119 uint8_t Endpoint_Read_Control_Stream_LE(void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1121 /** EEPROM buffer source version of \ref Endpoint_Read_Control_Stream_LE().
1123 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1124 * to clear the status stage when using this routine in a control transaction.
1127 * \note This routine should only be used on CONTROL type endpoints.
1129 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1130 * together; i.e. the entire stream data must be read or written at the one time.
1132 * \ingroup Group_EndpointStreamRW
1134 * \param[out] Buffer Pointer to the destination data buffer to write to.
1135 * \param[in] Length Number of bytes to send via the currently selected endpoint.
1137 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1139 uint8_t Endpoint_Read_Control_EStream_LE(void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1141 /** Reads the given number of bytes from the CONTROL endpoint from the given buffer in big endian,
1142 * discarding fully read packets from the host as needed. The device IN acknowledgement is not
1143 * automatically sent after success or failure states; the user is responsible for manually sending the
1144 * setup IN to finalize the transfer via the \ref Endpoint_ClearIN() macro.
1146 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1147 * to clear the status stage when using this routine in a control transaction.
1150 * \note This routine should only be used on CONTROL type endpoints.
1152 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1153 * together; i.e. the entire stream data must be read or written at the one time.
1155 * \ingroup Group_EndpointStreamRW
1157 * \param[out] Buffer Pointer to the destination data buffer to write to.
1158 * \param[in] Length Number of bytes to send via the currently selected endpoint.
1160 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1162 uint8_t Endpoint_Read_Control_Stream_BE(void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1164 /** EEPROM buffer source version of \ref Endpoint_Read_Control_Stream_BE().
1166 * \note This function automatically clears the control transfer's status stage. Do not manually attempt
1167 * to clear the status stage when using this routine in a control transaction.
1170 * \note This routine should only be used on CONTROL type endpoints.
1172 * \warning Unlike the standard stream read/write commands, the control stream commands cannot be chained
1173 * together; i.e. the entire stream data must be read or written at the one time.
1175 * \ingroup Group_EndpointStreamRW
1177 * \param[out] Buffer Pointer to the destination data buffer to write to.
1178 * \param[in] Length Number of bytes to send via the currently selected endpoint.
1180 * \return A value from the \ref Endpoint_ControlStream_RW_ErrorCodes_t enum.
1182 uint8_t Endpoint_Read_Control_EStream_BE(void* Buffer
, uint16_t Length
) ATTR_NON_NULL_PTR_ARG(1);
1184 /* Private Interface - For use in library only: */
1185 #if !defined(__DOXYGEN__)
1187 #define Endpoint_AllocateMemory() MACROS{ UECFG1X |= (1 << ALLOC); }MACROE
1188 #define Endpoint_DeallocateMemory() MACROS{ UECFG1X &= ~(1 << ALLOC); }MACROE
1190 #define _ENDPOINT_GET_MAXSIZE(n) _ENDPOINT_GET_MAXSIZE2(ENDPOINT_DETAILS_EP ## n)
1191 #define _ENDPOINT_GET_MAXSIZE2(details) _ENDPOINT_GET_MAXSIZE3(details)
1192 #define _ENDPOINT_GET_MAXSIZE3(maxsize, db) maxsize
1194 #define _ENDPOINT_GET_DOUBLEBANK(n) _ENDPOINT_GET_DOUBLEBANK2(ENDPOINT_DETAILS_EP ## n)
1195 #define _ENDPOINT_GET_DOUBLEBANK2(details) _ENDPOINT_GET_DOUBLEBANK3(details)
1196 #define _ENDPOINT_GET_DOUBLEBANK3(maxsize, db) db
1198 #if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)
1199 #define ENDPOINT_DETAILS_EP0 64, true
1200 #define ENDPOINT_DETAILS_EP1 256, true
1201 #define ENDPOINT_DETAILS_EP2 64, true
1202 #define ENDPOINT_DETAILS_EP3 64, true
1203 #define ENDPOINT_DETAILS_EP4 64, true
1204 #define ENDPOINT_DETAILS_EP5 64, true
1205 #define ENDPOINT_DETAILS_EP6 64, true
1207 #define ENDPOINT_DETAILS_EP0 64, true
1208 #define ENDPOINT_DETAILS_EP1 64, false
1209 #define ENDPOINT_DETAILS_EP2 64, false
1210 #define ENDPOINT_DETAILS_EP3 64, true
1211 #define ENDPOINT_DETAILS_EP4 64, true
1214 #define Endpoint_ConfigureEndpoint(Number, Type, Direction, Size, Banks) \
1215 Endpoint_ConfigureEndpoint_Prv((Number), \
1216 (((Type) << EPTYPE0) | (Direction)), \
1217 ((1 << ALLOC) | (Banks) | \
1218 (__builtin_constant_p(Size) ? \
1219 Endpoint_BytesToEPSizeMask(Size) : \
1220 Endpoint_BytesToEPSizeMaskDynamic(Size))))
1222 /* Function Prototypes: */
1223 void Endpoint_ClearEndpoints(void);
1224 uint8_t Endpoint_BytesToEPSizeMaskDynamic(const uint16_t Size
);
1225 bool Endpoint_ConfigureEndpoint_Prv(const uint8_t Number
, const uint8_t UECFG0XData
, const uint8_t UECFG1XData
);
1227 /* Inline Functions: */
1228 static inline uint8_t Endpoint_BytesToEPSizeMask(const uint16_t Bytes
) ATTR_WARN_UNUSED_RESULT ATTR_CONST ATTR_ALWAYS_INLINE
;
1229 static inline uint8_t Endpoint_BytesToEPSizeMask(const uint16_t Bytes
)
1231 uint8_t MaskVal
= 0;
1232 uint16_t CheckBytes
= 8;
1234 while (CheckBytes
< Bytes
)
1240 return (MaskVal
<< EPSIZE0
);
1245 /* Disable C linkage for C++ Compilers: */
1246 #if defined(__cplusplus)