3      Copyright (C) Dean Camera, 2013. 
   5   dean [at] fourwalledcubicle [dot] com 
  10   Copyright 2013  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 disclaims 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 Pipe definitions for the AVR8 microcontrollers. 
  33  *  \copydetails Group_PipeManagement_AVR8 
  35  *  \note This file should not be included directly. It is automatically included as needed by the USB driver 
  36  *        dispatch header located in LUFA/Drivers/USB/USB.h. 
  39 /** \ingroup Group_PipeRW 
  40  *  \defgroup Group_PipeRW_AVR8 Pipe Data Reading and Writing (AVR8) 
  41  *  \brief Pipe data read/write definitions for the Atmel AVR8 architecture. 
  43  *  Functions, macros, variables, enums and types related to data reading and writing from and to pipes. 
  46 /** \ingroup Group_PipePrimitiveRW 
  47  *  \defgroup Group_PipePrimitiveRW_AVR8 Read/Write of Primitive Data Types (AVR8) 
  48  *  \brief Pipe primitive data read/write definitions for the Atmel AVR8 architecture. 
  50  *  Functions, macros, variables, enums and types related to data reading and writing of primitive data types 
  54 /** \ingroup Group_PipePacketManagement 
  55  *  \defgroup Group_PipePacketManagement_AVR8 Pipe Packet Management (AVR8) 
  56  *  \brief Pipe packet management definitions for the Atmel AVR8 architecture. 
  58  *  Functions, macros, variables, enums and types related to packet management of pipes. 
  61 /** \ingroup Group_PipeControlReq 
  62  *  \defgroup Group_PipeControlReq_AVR8 Pipe Control Request Management (AVR8) 
  63  *  \brief Pipe control request management definitions for the Atmel AVR8 architecture. 
  65  *  Module for host mode request processing. This module allows for the transmission of standard, class and 
  66  *  vendor control requests to the default control endpoint of an attached device while in host mode. 
  68  *  \see Chapter 9 of the USB 2.0 specification. 
  71 /** \ingroup Group_PipeManagement 
  72  *  \defgroup Group_PipeManagement_AVR8 Pipe Management (AVR8) 
  73  *  \brief Pipe management definitions for the Atmel AVR8 architecture. 
  75  *  This module contains functions, macros and enums related to pipe management when in USB Host mode. This 
  76  *  module contains the pipe management macros, as well as pipe interrupt and data send/receive functions 
  77  *  for various data types. 
  82 #ifndef __PIPE_AVR8_H__ 
  83 #define __PIPE_AVR8_H__ 
  86                 #include "../../../../Common/Common.h" 
  87                 #include "../USBTask.h" 
  89         /* Enable C linkage for C++ Compilers: */ 
  90                 #if defined(__cplusplus) 
  94         /* Preprocessor Checks: */ 
  95                 #if !defined(__INCLUDE_FROM_USB_DRIVER) 
  96                         #error Do not include this file directly. Include LUFA/Drivers/USB/USB.h instead. 
  99         /* Public Interface - May be used in end-application: */ 
 101                         /** \name Pipe Error Flag Masks */ 
 103                         /** Mask for \ref Pipe_GetErrorFlags(), indicating that an overflow error occurred in the pipe on the received data. */ 
 104                         #define PIPE_ERRORFLAG_OVERFLOW         (1 << 6) 
 106                         /** Mask for \ref Pipe_GetErrorFlags(), indicating that an underflow error occurred in the pipe on the received data. */ 
 107                         #define PIPE_ERRORFLAG_UNDERFLOW        (1 << 5) 
 109                         /** Mask for \ref Pipe_GetErrorFlags(), indicating that a CRC error occurred in the pipe on the received data. */ 
 110                         #define PIPE_ERRORFLAG_CRC16            (1 << 4) 
 112                         /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware timeout error occurred in the pipe. */ 
 113                         #define PIPE_ERRORFLAG_TIMEOUT          (1 << 3) 
 115                         /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware PID error occurred in the pipe. */ 
 116                         #define PIPE_ERRORFLAG_PID              (1 << 2) 
 118                         /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware data PID error occurred in the pipe. */ 
 119                         #define PIPE_ERRORFLAG_DATAPID          (1 << 1) 
 121                         /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware data toggle error occurred in the pipe. */ 
 122                         #define PIPE_ERRORFLAG_DATATGL          (1 << 0) 
 125                         /** \name Pipe Token Masks */ 
 127                         /** Token mask for \ref Pipe_SetPipeToken() and \ref Pipe_GetPipeToken(). This sets the pipe as a SETUP token (for CONTROL type pipes), 
 128                          *  which will trigger a control request on the attached device when data is written to the pipe. 
 130                         #define PIPE_TOKEN_SETUP                (0 << PTOKEN0) 
 132                         /** Token mask for \ref Pipe_SetPipeToken() and \ref Pipe_GetPipeToken(). This sets the pipe as a IN token (for non-CONTROL type pipes), 
 133                          *  indicating that the pipe data will flow from device to host. 
 135                         #define PIPE_TOKEN_IN                   (1 << PTOKEN0) 
 137                         /** Token mask for \ref Pipe_SetPipeToken() and \ref Pipe_GetPipeToken(). This sets the pipe as a OUT token (for non-CONTROL type pipes), 
 138                          *  indicating that the pipe data will flow from host to device. 
 140                         #define PIPE_TOKEN_OUT                  (2 << PTOKEN0) 
 143                         /** Default size of the default control pipe's bank, until altered by the Endpoint0Size value 
 144                          *  in the device descriptor of the attached device. 
 146                         #define PIPE_CONTROLPIPE_DEFAULT_SIZE   64 
 148                         /** Total number of pipes (including the default control pipe at address 0) which may be used in 
 149                          *  the device. Different USB AVR models support different amounts of pipes, this value reflects 
 150                          *  the maximum number of pipes for the currently selected AVR model. 
 152                         #define PIPE_TOTAL_PIPES                7 
 154                         /** Size in bytes of the largest pipe bank size possible in the device. Not all banks on each AVR 
 155                          *  model supports the largest bank size possible on the device; different pipe numbers support 
 156                          *  different maximum bank sizes. This value reflects the largest possible bank of any pipe on the 
 157                          *  currently selected USB AVR model. 
 159                         #define PIPE_MAX_SIZE                   256 
 162                         /** Enum for the possible error return codes of the \ref Pipe_WaitUntilReady() function. 
 164                          *  \ingroup Group_PipeRW_AVR8 
 166                         enum Pipe_WaitUntilReady_ErrorCodes_t
 
 168                                 PIPE_READYWAIT_NoError                 
= 0, /**< Pipe ready for next packet, no error. */ 
 169                                 PIPE_READYWAIT_PipeStalled             
= 1,     /**< The device stalled the pipe while waiting. */ 
 170                                 PIPE_READYWAIT_DeviceDisconnected      
= 2,     /**< Device was disconnected from the host while waiting. */ 
 171                                 PIPE_READYWAIT_Timeout                 
= 3, /**< The device failed to accept or send the next packet 
 172                                                                              *   within the software timeout period set by the 
 173                                                                              *   \ref USB_STREAM_TIMEOUT_MS macro. 
 177                 /* Inline Functions: */ 
 178                         /** Indicates the number of bytes currently stored in the current pipes's selected bank. 
 180                          *  \ingroup Group_PipeRW_AVR8 
 182                          *  \return Total number of bytes in the currently selected pipe's FIFO buffer. 
 184                         static inline uint16_t Pipe_BytesInPipe(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 185                         static inline uint16_t Pipe_BytesInPipe(void) 
 190                         /** Determines the currently selected pipe's direction. 
 192                          *  \return The currently selected pipe's direction, as a \c PIPE_DIR_* mask. 
 194                         static inline uint8_t Pipe_GetPipeDirection(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 195                         static inline uint8_t Pipe_GetPipeDirection(void) 
 197                                 return (UPCFG0X 
& (1 << EPDIR
)) ? PIPE_DIR_IN 
: PIPE_DIR_OUT
; 
 200                         /** Returns the pipe address of the currently selected pipe. This is typically used to save the 
 201                          *  currently selected pipe address so that it can be restored after another pipe has been manipulated. 
 203                          *  \return Index of the currently selected pipe. 
 205                         static inline uint8_t Pipe_GetCurrentPipe(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 206                         static inline uint8_t Pipe_GetCurrentPipe(void) 
 208                                 return ((UPNUM 
& PIPE_PIPENUM_MASK
) | Pipe_GetPipeDirection()); 
 211                         /** Selects the given pipe address. Any pipe operations which do not require the pipe address to be 
 212                          *  indicated will operate on the currently selected pipe. 
 214                          *  \param[in] Address  Address of the pipe to select. 
 216                         static inline void Pipe_SelectPipe(const uint8_t Address
) ATTR_ALWAYS_INLINE
; 
 217                         static inline void Pipe_SelectPipe(const uint8_t Address
) 
 219                                 UPNUM 
= (Address 
& PIPE_PIPENUM_MASK
); 
 222                         /** Resets the desired pipe, including the pipe banks and flags. 
 224                          *  \param[in] Address  Address of the pipe to reset. 
 226                         static inline void Pipe_ResetPipe(const uint8_t Address
) ATTR_ALWAYS_INLINE
; 
 227                         static inline void Pipe_ResetPipe(const uint8_t Address
) 
 229                                 UPRST 
= (1 << (Address 
& PIPE_PIPENUM_MASK
)); 
 233                         /** Enables the currently selected pipe so that data can be sent and received through it to and from 
 234                          *  an attached device. 
 236                          *  \pre The currently selected pipe must first be configured properly via \ref Pipe_ConfigurePipe(). 
 238                         static inline void Pipe_EnablePipe(void) ATTR_ALWAYS_INLINE
; 
 239                         static inline void Pipe_EnablePipe(void) 
 241                                 UPCONX 
|= (1 << PEN
); 
 244                         /** Disables the currently selected pipe so that data cannot be sent and received through it to and 
 245                          *  from an attached device. 
 247                         static inline void Pipe_DisablePipe(void) ATTR_ALWAYS_INLINE
; 
 248                         static inline void Pipe_DisablePipe(void) 
 250                                 UPCONX 
&= ~(1 << PEN
); 
 253                         /** Determines if the currently selected pipe is enabled, but not necessarily configured. 
 255                          * \return Boolean \c true if the currently selected pipe is enabled, \c false otherwise. 
 257                         static inline bool Pipe_IsEnabled(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 258                         static inline bool Pipe_IsEnabled(void) 
 260                                 return ((UPCONX 
& (1 << PEN
)) ? 
true : false); 
 263                         /** Gets the current pipe token, indicating the pipe's data direction and type. 
 265                          *  \return The current pipe token, as a \c PIPE_TOKEN_* mask. 
 267                         static inline uint8_t Pipe_GetPipeToken(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 268                         static inline uint8_t Pipe_GetPipeToken(void) 
 270                                 return (UPCFG0X 
& (0x03 << PTOKEN0
)); 
 273                         /** Sets the token for the currently selected pipe to one of the tokens specified by the \c PIPE_TOKEN_* 
 274                          *  masks. This can be used on CONTROL type pipes, to allow for bidirectional transfer of data during 
 275                          *  control requests, or on regular pipes to allow for half-duplex bidirectional data transfer to devices 
 276                          *  which have two endpoints of opposite direction sharing the same endpoint address within the device. 
 278                          *  \param[in] Token  New pipe token to set the selected pipe to, as a \c PIPE_TOKEN_* mask. 
 280                         static inline void Pipe_SetPipeToken(const uint8_t Token
) ATTR_ALWAYS_INLINE
; 
 281                         static inline void Pipe_SetPipeToken(const uint8_t Token
) 
 283                                 UPCFG0X 
= ((UPCFG0X 
& ~(0x03 << PTOKEN0
)) | Token
); 
 286                         /** Configures the currently selected pipe to allow for an unlimited number of IN requests. */ 
 287                         static inline void Pipe_SetInfiniteINRequests(void) ATTR_ALWAYS_INLINE
; 
 288                         static inline void Pipe_SetInfiniteINRequests(void) 
 290                                 UPCONX 
|= (1 << INMODE
); 
 293                         /** Configures the currently selected pipe to only allow the specified number of IN requests to be 
 294                          *  accepted by the pipe before it is automatically frozen. 
 296                          *  \param[in] TotalINRequests  Total number of IN requests that the pipe may receive before freezing. 
 298                         static inline void Pipe_SetFiniteINRequests(const uint8_t TotalINRequests
) ATTR_ALWAYS_INLINE
; 
 299                         static inline void Pipe_SetFiniteINRequests(const uint8_t TotalINRequests
) 
 301                                 UPCONX 
&= ~(1 << INMODE
); 
 302                                 UPINRQX 
= TotalINRequests
; 
 305                         /** Determines if the currently selected pipe is configured. 
 307                          *  \return Boolean \c true if the selected pipe is configured, \c false otherwise. 
 309                         static inline bool Pipe_IsConfigured(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 310                         static inline bool Pipe_IsConfigured(void) 
 312                                 return ((UPSTAX 
& (1 << CFGOK
)) ? 
true : false); 
 315                         /** Retrieves the endpoint address of the endpoint within the attached device that the currently selected 
 318                          *  \return Endpoint address the currently selected pipe is bound to. 
 320                         static inline uint8_t Pipe_GetBoundEndpointAddress(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 321                         static inline uint8_t Pipe_GetBoundEndpointAddress(void) 
 323                                 uint8_t UPCFG0X_Temp 
= UPCFG0X
; 
 325                                 return (((UPCFG0X_Temp 
>> PEPNUM0
) & PIPE_EPNUM_MASK
) | ((UPCFG0X_Temp 
& PEPNUM1
) ? ENDPOINT_DIR_OUT 
: ENDPOINT_DIR_IN
)); 
 328                         /** Sets the period between interrupts for an INTERRUPT type pipe to a specified number of milliseconds. 
 330                          *  \param[in] Milliseconds  Number of milliseconds between each pipe poll. 
 332                         static inline void Pipe_SetInterruptPeriod(const uint8_t Milliseconds
) ATTR_ALWAYS_INLINE
; 
 333                         static inline void Pipe_SetInterruptPeriod(const uint8_t Milliseconds
) 
 335                                 UPCFG2X 
= Milliseconds
; 
 338                         /** Returns a mask indicating which pipe's interrupt periods have elapsed, indicating that the pipe should 
 341                          *  \return Mask whose bits indicate which pipes have interrupted. 
 343                         static inline uint8_t Pipe_GetPipeInterrupts(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 344                         static inline uint8_t Pipe_GetPipeInterrupts(void) 
 349                         /** Determines if the specified pipe address has interrupted (valid only for INTERRUPT type 
 352                          *  \param[in] Address  Address of the pipe whose interrupt flag should be tested. 
 354                          *  \return Boolean \c true if the specified pipe has interrupted, \c false otherwise. 
 356                         static inline bool Pipe_HasPipeInterrupted(const uint8_t Address
) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 357                         static inline bool Pipe_HasPipeInterrupted(const uint8_t Address
) 
 359                                 return ((UPINT 
& (1 << (Address 
& PIPE_PIPENUM_MASK
))) ? 
true : false); 
 362                         /** Unfreezes the selected pipe, allowing it to communicate with an attached device. */ 
 363                         static inline void Pipe_Unfreeze(void) ATTR_ALWAYS_INLINE
; 
 364                         static inline void Pipe_Unfreeze(void) 
 366                                 UPCONX 
&= ~(1 << PFREEZE
); 
 369                         /** Freezes the selected pipe, preventing it from communicating with an attached device. */ 
 370                         static inline void Pipe_Freeze(void) ATTR_ALWAYS_INLINE
; 
 371                         static inline void Pipe_Freeze(void) 
 373                                 UPCONX 
|= (1 << PFREEZE
); 
 376                         /** Determines if the currently selected pipe is frozen, and not able to accept data. 
 378                          *  \return Boolean \c true if the currently selected pipe is frozen, \c false otherwise. 
 380                         static inline bool Pipe_IsFrozen(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 381                         static inline bool Pipe_IsFrozen(void) 
 383                                 return ((UPCONX 
& (1 << PFREEZE
)) ? 
true : false); 
 386                         /** Clears the error flags for the currently selected pipe. */ 
 387                         static inline void Pipe_ClearError(void) ATTR_ALWAYS_INLINE
; 
 388                         static inline void Pipe_ClearError(void) 
 391                                 UPINTX 
&= ~(1 << PERRI
); 
 394                         /** Determines if the master pipe error flag is set for the currently selected pipe, indicating that 
 395                          *  some sort of hardware error has occurred on the pipe. 
 397                          *  \see \ref Pipe_GetErrorFlags() macro for information on retrieving the exact error flag. 
 399                          *  \return Boolean \c true if an error has occurred on the selected pipe, \c false otherwise. 
 401                         static inline bool Pipe_IsError(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 402                         static inline bool Pipe_IsError(void) 
 404                                 return ((UPINTX 
& (1 << PERRI
)) ? 
true : false); 
 407                         /** Gets a mask of the hardware error flags which have occurred on the currently selected pipe. This 
 408                          *  value can then be masked against the \c PIPE_ERRORFLAG_* masks to determine what error has occurred. 
 410                          *  \return  Mask comprising of \c PIPE_ERRORFLAG_* bits indicating what error has occurred on the selected pipe. 
 412                         static inline uint8_t Pipe_GetErrorFlags(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 413                         static inline uint8_t Pipe_GetErrorFlags(void) 
 415                                 return ((UPERRX 
& (PIPE_ERRORFLAG_CRC16 
| PIPE_ERRORFLAG_TIMEOUT 
| 
 416                                                    PIPE_ERRORFLAG_PID   
| PIPE_ERRORFLAG_DATAPID 
| 
 417                                                    PIPE_ERRORFLAG_DATATGL
)) | 
 418                                         (UPSTAX 
& (PIPE_ERRORFLAG_OVERFLOW 
| PIPE_ERRORFLAG_UNDERFLOW
))); 
 421                         /** Retrieves the number of busy banks in the currently selected pipe, which have been queued for 
 422                          *  transmission via the \ref Pipe_ClearOUT() command, or are awaiting acknowledgement via the 
 423                          *  \ref Pipe_ClearIN() command. 
 425                          *  \ingroup Group_PipePacketManagement_AVR8 
 427                          *  \return Total number of busy banks in the selected pipe. 
 429                         static inline uint8_t Pipe_GetBusyBanks(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 430                         static inline uint8_t Pipe_GetBusyBanks(void) 
 432                                 return (UPSTAX 
& (0x03 << NBUSYBK0
)); 
 435                         /** Determines if the currently selected pipe may be read from (if data is waiting in the pipe 
 436                          *  bank and the pipe is an IN direction, or if the bank is not yet full if the pipe is an OUT 
 437                          *  direction). This function will return false if an error has occurred in the pipe, or if the pipe 
 438                          *  is an IN direction and no packet (or an empty packet) has been received, or if the pipe is an OUT 
 439                          *  direction and the pipe bank is full. 
 441                          *  \note This function is not valid on CONTROL type pipes. 
 443                          *  \ingroup Group_PipePacketManagement_AVR8 
 445                          *  \return Boolean \c true if the currently selected pipe may be read from or written to, depending 
 448                         static inline bool Pipe_IsReadWriteAllowed(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 449                         static inline bool Pipe_IsReadWriteAllowed(void) 
 451                                 return ((UPINTX 
& (1 << RWAL
)) ? 
true : false); 
 454                         /** Determines if a packet has been received on the currently selected IN pipe from the attached device. 
 456                          *  \ingroup Group_PipePacketManagement_AVR8 
 458                          *  \return Boolean \c true if the current pipe has received an IN packet, \c false otherwise. 
 460                         static inline bool Pipe_IsINReceived(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 461                         static inline bool Pipe_IsINReceived(void) 
 463                                 return ((UPINTX 
& (1 << RXINI
)) ? 
true : false); 
 466                         /** Determines if the currently selected OUT pipe is ready to send an OUT packet to the attached device. 
 468                          *  \ingroup Group_PipePacketManagement_AVR8 
 470                          *  \return Boolean \c true if the current pipe is ready for an OUT packet, \c false otherwise. 
 472                         static inline bool Pipe_IsOUTReady(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 473                         static inline bool Pipe_IsOUTReady(void) 
 475                                 return ((UPINTX 
& (1 << TXOUTI
)) ? 
true : false); 
 478                         /** Determines if no SETUP request is currently being sent to the attached device on the selected 
 481                          *  \ingroup Group_PipePacketManagement_AVR8 
 483                          *  \return Boolean \c true if the current pipe is ready for a SETUP packet, \c false otherwise. 
 485                         static inline bool Pipe_IsSETUPSent(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 486                         static inline bool Pipe_IsSETUPSent(void) 
 488                                 return ((UPINTX 
& (1 << TXSTPI
)) ? 
true : false); 
 491                         /** Sends the currently selected CONTROL type pipe's contents to the device as a SETUP packet. 
 493                          *  \ingroup Group_PipePacketManagement_AVR8 
 495                         static inline void Pipe_ClearSETUP(void) ATTR_ALWAYS_INLINE
; 
 496                         static inline void Pipe_ClearSETUP(void) 
 498                                 UPINTX 
&= ~((1 << TXSTPI
) | (1 << FIFOCON
)); 
 501                         /** Acknowledges the reception of a setup IN request from the attached device on the currently selected 
 502                          *  pipe, freeing the bank ready for the next packet. 
 504                          *  \ingroup Group_PipePacketManagement_AVR8 
 506                         static inline void Pipe_ClearIN(void) ATTR_ALWAYS_INLINE
; 
 507                         static inline void Pipe_ClearIN(void) 
 509                                 UPINTX 
&= ~((1 << RXINI
) | (1 << FIFOCON
)); 
 512                         /** Sends the currently selected pipe's contents to the device as an OUT packet on the selected pipe, freeing 
 513                          *  the bank ready for the next packet. 
 515                          *  \ingroup Group_PipePacketManagement_AVR8 
 517                         static inline void Pipe_ClearOUT(void) ATTR_ALWAYS_INLINE
; 
 518                         static inline void Pipe_ClearOUT(void) 
 520                                 UPINTX 
&= ~((1 << TXOUTI
) | (1 << FIFOCON
)); 
 523                         /** Determines if the device sent a NAK (Negative Acknowledge) in response to the last sent packet on 
 524                          *  the currently selected pipe. This occurs when the host sends a packet to the device, but the device 
 525                          *  is not currently ready to handle the packet (i.e. its endpoint banks are full). Once a NAK has been 
 526                          *  received, it must be cleared using \ref Pipe_ClearNAKReceived() before the previous (or any other) packet 
 529                          *  \ingroup Group_PipePacketManagement_AVR8 
 531                          *  \return Boolean \c true if an NAK has been received on the current pipe, \c false otherwise. 
 533                         static inline bool Pipe_IsNAKReceived(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 534                         static inline bool Pipe_IsNAKReceived(void) 
 536                                 return ((UPINTX 
& (1 << NAKEDI
)) ? 
true : false); 
 539                         /** Clears the NAK condition on the currently selected pipe. 
 541                          *  \ingroup Group_PipePacketManagement_AVR8 
 543                          *  \see \ref Pipe_IsNAKReceived() for more details. 
 545                         static inline void Pipe_ClearNAKReceived(void) ATTR_ALWAYS_INLINE
; 
 546                         static inline void Pipe_ClearNAKReceived(void) 
 548                                 UPINTX 
&= ~(1 << NAKEDI
); 
 551                         /** Determines if the currently selected pipe has had the STALL condition set by the attached device. 
 553                          *  \ingroup Group_PipePacketManagement_AVR8 
 555                          *  \return Boolean \c true if the current pipe has been stalled by the attached device, \c false otherwise. 
 557                         static inline bool Pipe_IsStalled(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 558                         static inline bool Pipe_IsStalled(void) 
 560                                 return ((UPINTX 
& (1 << RXSTALLI
)) ? 
true : false); 
 563                         /** Clears the STALL condition detection flag on the currently selected pipe, but does not clear the 
 564                          *  STALL condition itself (this must be done via a ClearFeature control request to the device). 
 566                          *  \ingroup Group_PipePacketManagement_AVR8 
 568                         static inline void Pipe_ClearStall(void) ATTR_ALWAYS_INLINE
; 
 569                         static inline void Pipe_ClearStall(void) 
 571                                 UPINTX 
&= ~(1 << RXSTALLI
); 
 574                         /** Reads one byte from the currently selected pipe's bank, for OUT direction pipes. 
 576                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 578                          *  \return Next byte in the currently selected pipe's FIFO buffer. 
 580                         static inline uint8_t Pipe_Read_8(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 581                         static inline uint8_t Pipe_Read_8(void) 
 586                         /** Writes one byte to the currently selected pipe's bank, for IN direction pipes. 
 588                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 590                          *  \param[in] Data  Data to write into the the currently selected pipe's FIFO buffer. 
 592                         static inline void Pipe_Write_8(const uint8_t Data
) ATTR_ALWAYS_INLINE
; 
 593                         static inline void Pipe_Write_8(const uint8_t Data
) 
 598                         /** Discards one byte from the currently selected pipe's bank, for OUT direction pipes. 
 600                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 602                         static inline void Pipe_Discard_8(void) ATTR_ALWAYS_INLINE
; 
 603                         static inline void Pipe_Discard_8(void) 
 612                         /** Reads two bytes from the currently selected pipe's bank in little endian format, for OUT 
 615                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 617                          *  \return Next two bytes in the currently selected pipe's FIFO buffer. 
 619                         static inline uint16_t Pipe_Read_16_LE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 620                         static inline uint16_t Pipe_Read_16_LE(void) 
 628                                 Data
.Bytes
[0] = UPDATX
; 
 629                                 Data
.Bytes
[1] = UPDATX
; 
 634                         /** Reads two bytes from the currently selected pipe's bank in big endian format, for OUT 
 637                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 639                          *  \return Next two bytes in the currently selected pipe's FIFO buffer. 
 641                         static inline uint16_t Pipe_Read_16_BE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 642                         static inline uint16_t Pipe_Read_16_BE(void) 
 650                                 Data
.Bytes
[1] = UPDATX
; 
 651                                 Data
.Bytes
[0] = UPDATX
; 
 656                         /** Writes two bytes to the currently selected pipe's bank in little endian format, for IN 
 659                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 661                          *  \param[in] Data  Data to write to the currently selected pipe's FIFO buffer. 
 663                         static inline void Pipe_Write_16_LE(const uint16_t Data
) ATTR_ALWAYS_INLINE
; 
 664                         static inline void Pipe_Write_16_LE(const uint16_t Data
) 
 666                                 UPDATX 
= (Data 
& 0xFF); 
 667                                 UPDATX 
= (Data 
>> 8); 
 670                         /** Writes two bytes to the currently selected pipe's bank in big endian format, for IN 
 673                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 675                          *  \param[in] Data  Data to write to the currently selected pipe's FIFO buffer. 
 677                         static inline void Pipe_Write_16_BE(const uint16_t Data
) ATTR_ALWAYS_INLINE
; 
 678                         static inline void Pipe_Write_16_BE(const uint16_t Data
) 
 680                                 UPDATX 
= (Data 
>> 8); 
 681                                 UPDATX 
= (Data 
& 0xFF); 
 684                         /** Discards two bytes from the currently selected pipe's bank, for OUT direction pipes. 
 686                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 688                         static inline void Pipe_Discard_16(void) ATTR_ALWAYS_INLINE
; 
 689                         static inline void Pipe_Discard_16(void) 
 699                         /** Reads four bytes from the currently selected pipe's bank in little endian format, for OUT 
 702                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 704                          *  \return Next four bytes in the currently selected pipe's FIFO buffer. 
 706                         static inline uint32_t Pipe_Read_32_LE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 707                         static inline uint32_t Pipe_Read_32_LE(void) 
 715                                 Data
.Bytes
[0] = UPDATX
; 
 716                                 Data
.Bytes
[1] = UPDATX
; 
 717                                 Data
.Bytes
[2] = UPDATX
; 
 718                                 Data
.Bytes
[3] = UPDATX
; 
 723                         /** Reads four bytes from the currently selected pipe's bank in big endian format, for OUT 
 726                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 728                          *  \return Next four bytes in the currently selected pipe's FIFO buffer. 
 730                         static inline uint32_t Pipe_Read_32_BE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE
; 
 731                         static inline uint32_t Pipe_Read_32_BE(void) 
 739                                 Data
.Bytes
[3] = UPDATX
; 
 740                                 Data
.Bytes
[2] = UPDATX
; 
 741                                 Data
.Bytes
[1] = UPDATX
; 
 742                                 Data
.Bytes
[0] = UPDATX
; 
 747                         /** Writes four bytes to the currently selected pipe's bank in little endian format, for IN 
 750                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 752                          *  \param[in] Data  Data to write to the currently selected pipe's FIFO buffer. 
 754                         static inline void Pipe_Write_32_LE(const uint32_t Data
) ATTR_ALWAYS_INLINE
; 
 755                         static inline void Pipe_Write_32_LE(const uint32_t Data
) 
 757                                 UPDATX 
= (Data 
&  0xFF); 
 758                                 UPDATX 
= (Data 
>> 8); 
 759                                 UPDATX 
= (Data 
>> 16); 
 760                                 UPDATX 
= (Data 
>> 24); 
 763                         /** Writes four bytes to the currently selected pipe's bank in big endian format, for IN 
 766                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 768                          *  \param[in] Data  Data to write to the currently selected pipe's FIFO buffer. 
 770                         static inline void Pipe_Write_32_BE(const uint32_t Data
) ATTR_ALWAYS_INLINE
; 
 771                         static inline void Pipe_Write_32_BE(const uint32_t Data
) 
 773                                 UPDATX 
= (Data 
>> 24); 
 774                                 UPDATX 
= (Data 
>> 16); 
 775                                 UPDATX 
= (Data 
>> 8); 
 776                                 UPDATX 
= (Data 
&  0xFF); 
 779                         /** Discards four bytes from the currently selected pipe's bank, for OUT direction pipes. 
 781                          *  \ingroup Group_PipePrimitiveRW_AVR8 
 783                         static inline void Pipe_Discard_32(void) ATTR_ALWAYS_INLINE
; 
 784                         static inline void Pipe_Discard_32(void) 
 796                 /* External Variables: */ 
 797                         /** Global indicating the maximum packet size of the default control pipe located at address 
 798                          *  0 in the device. This value is set to the value indicated in the attached device's device 
 799                      *  descriptor once the USB interface is initialized into host mode and a device is attached 
 802                          *  \attention This variable should be treated as read-only in the user application, and never manually 
 805                         extern uint8_t USB_Host_ControlPipeSize
; 
 807                 /* Function Prototypes: */ 
 808                         /** Configures a table of pipe descriptions, in sequence. This function can be used to configure multiple 
 809                          *  pipes at the same time. 
 811                          *  \note Pipe with a zero address will be ignored, thus this function cannot be used to configure the 
 814                          *  \param[in] Table    Pointer to a table of pipe descriptions. 
 815                          *  \param[in] Entries  Number of entries in the pipe table to configure. 
 817                          *  \return Boolean \c true if all pipes configured successfully, \c false otherwise. 
 819                         bool Pipe_ConfigurePipeTable(const USB_Pipe_Table_t
* const Table
, 
 820                                                      const uint8_t Entries
); 
 822                         /** Configures the specified pipe address with the given pipe type, endpoint address within the attached device, bank size 
 823                          *  and number of hardware banks. 
 825                          *  A newly configured pipe is frozen by default, and must be unfrozen before use via the \ref Pipe_Unfreeze() 
 826                          *  before being used. Pipes should be kept frozen unless waiting for data from a device while in IN mode, or 
 827                          *  sending data to the device in OUT mode. IN type pipes are also automatically configured to accept infinite 
 828                          *  numbers of IN requests without automatic freezing - this can be overridden by a call to 
 829                          *  \ref Pipe_SetFiniteINRequests(). 
 831                          *  \param[in] Address          Pipe address to configure. 
 833                          *  \param[in] Type             Type of pipe to configure, an \c EP_TYPE_* mask. Not all pipe types are available on Low 
 834                          *                              Speed USB devices - refer to the USB 2.0 specification. 
 836                          *  \param[in] EndpointAddress  Endpoint address within the attached device that the pipe should interface to. 
 838                          *  \param[in] Size             Size of the pipe's bank, where packets are stored before they are transmitted to 
 839                          *                              the USB device, or after they have been received from the USB device (depending on 
 840                          *                              the pipe's data direction). The bank size must indicate the maximum packet size that 
 841                          *                              the pipe can handle. 
 843                          *  \param[in] Banks            Number of banks to use for the pipe being configured. 
 845                          *  \attention When the \c ORDERED_EP_CONFIG compile time option is used, Pipes <b>must</b> be configured in ascending order, 
 846                          *             or bank corruption will occur. 
 848                          *  \note Certain microcontroller model's pipes may have different maximum packet sizes based on the pipe's 
 849                          *        index - refer to the chosen microcontroller's datasheet to determine the maximum bank size for each pipe. 
 852                          *  \note The default control pipe should not be manually configured by the user application, as it is 
 853                          *        automatically configured by the library internally. 
 856                          *  \note This routine will automatically select the specified pipe upon success. Upon failure, the pipe which 
 857                          *        failed to reconfigure correctly will be selected. 
 859                          *  \return Boolean \c true if the configuration succeeded, \c false otherwise. 
 861                         bool Pipe_ConfigurePipe(const uint8_t Address
, 
 863                                                 const uint8_t EndpointAddress
, 
 865                                                 const uint8_t Banks
); 
 867                         /** Spin-loops until the currently selected non-control pipe is ready for the next packet of data to be read 
 868                          *  or written to it, aborting in the case of an error condition (such as a timeout or device disconnect). 
 870                          *  \ingroup Group_PipeRW_AVR8 
 872                          *  \return A value from the \ref Pipe_WaitUntilReady_ErrorCodes_t enum. 
 874                         uint8_t Pipe_WaitUntilReady(void); 
 876                         /** Determines if a pipe has been bound to the given device endpoint address. If a pipe which is bound to the given 
 877                          *  endpoint is found, it is automatically selected. 
 879                          *  \param[in] EndpointAddress Address and direction mask of the endpoint within the attached device to check. 
 881                          *  \return Boolean \c true if a pipe bound to the given endpoint address of the specified direction is found, 
 882                          *          \c false otherwise. 
 884                         bool Pipe_IsEndpointBound(const uint8_t EndpointAddress
) ATTR_WARN_UNUSED_RESULT
; 
 886         /* Private Interface - For use in library only: */ 
 887         #if !defined(__DOXYGEN__) 
 889                         #if !defined(ENDPOINT_CONTROLEP) 
 890                                 #define ENDPOINT_CONTROLEP          0 
 893                 /* Inline Functions: */ 
 894                         static inline uint8_t Pipe_BytesToEPSizeMask(const uint16_t Bytes
) ATTR_WARN_UNUSED_RESULT ATTR_CONST ATTR_ALWAYS_INLINE
; 
 895                         static inline uint8_t Pipe_BytesToEPSizeMask(const uint16_t Bytes
) 
 898                                 uint16_t CheckBytes 
= 8; 
 900                                 while ((CheckBytes 
< Bytes
) && (CheckBytes 
< PIPE_MAX_SIZE
)) 
 906                                 return (MaskVal 
<< EPSIZE0
); 
 909                 /* Function Prototypes: */ 
 910                         void Pipe_ClearPipes(void); 
 913         /* Disable C linkage for C++ Compilers: */ 
 914                 #if defined(__cplusplus)