Make Bluetooth signalling handler routines use the generic Bluetooth_SendPacket(...
[pub/USBasp.git] / LUFA / Drivers / USB / LowLevel / Pipe.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2010.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
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.
20
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
28 this software.
29 */
30
31 /** \file
32 * \brief USB host pipe management definitions.
33 *
34 * This file contains structures, function prototypes and macros related to the management of the device's
35 * data pipes when the library is initialized in USB host mode.
36 *
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.
39 */
40
41 /** \ingroup Group_USB
42 * @defgroup Group_PipeManagement Pipe Management
43 *
44 * This module contains functions, macros and enums related to pipe management when in USB Host mode. This
45 * module contains the pipe management macros, as well as pipe interrupt and data send/receive functions
46 * for various data types.
47 *
48 * @{
49 */
50
51 /** @defgroup Group_PipeRW Pipe Data Reading and Writing
52 *
53 * Functions, macros, variables, enums and types related to data reading and writing from and to pipes.
54 */
55
56 /** \ingroup Group_PipeRW
57 * @defgroup Group_PipePrimitiveRW Read/Write of Primitive Data Types
58 *
59 * Functions, macros, variables, enums and types related to data reading and writing of primitive data types
60 * from and to pipes.
61 */
62
63 /** \ingroup Group_PipeRW
64 * @defgroup Group_PipeStreamRW Read/Write of Multi-Byte Streams
65 *
66 * Functions, macros, variables, enums and types related to data reading and writing of data streams from
67 * and to pipes.
68 */
69
70 /** @defgroup Group_PipePacketManagement Pipe Packet Management
71 *
72 * Functions, macros, variables, enums and types related to packet management of pipes.
73 */
74
75 /** @defgroup Group_PipeControlReq Pipe Control Request Management
76 *
77 * Module for host mode request processing. This module allows for the transmission of standard, class and
78 * vendor control requests to the default control endpoint of an attached device while in host mode.
79 *
80 * \see Chapter 9 of the USB 2.0 specification.
81 */
82
83 #ifndef __PIPE_H__
84 #define __PIPE_H__
85
86 /* Includes: */
87 #include <avr/io.h>
88 #include <avr/pgmspace.h>
89 #include <avr/eeprom.h>
90 #include <stdbool.h>
91
92 #include "../../../Common/Common.h"
93 #include "../HighLevel/USBTask.h"
94
95 #if !defined(NO_STREAM_CALLBACKS) || defined(__DOXYGEN__)
96 #include "../HighLevel/StreamCallbacks.h"
97 #endif
98
99 /* Enable C linkage for C++ Compilers: */
100 #if defined(__cplusplus)
101 extern "C" {
102 #endif
103
104 /* Preprocessor Checks: */
105 #if !defined(__INCLUDE_FROM_USB_DRIVER)
106 #error Do not include this file directly. Include LUFA/Drivers/USB/USB.h instead.
107 #endif
108
109 /* Public Interface - May be used in end-application: */
110 /* Macros: */
111 /** Mask for \ref Pipe_GetErrorFlags(), indicating that an overflow error occurred in the pipe on the received data. */
112 #define PIPE_ERRORFLAG_OVERFLOW (1 << 6)
113
114 /** Mask for \ref Pipe_GetErrorFlags(), indicating that an underflow error occurred in the pipe on the received data. */
115 #define PIPE_ERRORFLAG_UNDERFLOW (1 << 5)
116
117 /** Mask for \ref Pipe_GetErrorFlags(), indicating that a CRC error occurred in the pipe on the received data. */
118 #define PIPE_ERRORFLAG_CRC16 (1 << 4)
119
120 /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware timeout error occurred in the pipe. */
121 #define PIPE_ERRORFLAG_TIMEOUT (1 << 3)
122
123 /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware PID error occurred in the pipe. */
124 #define PIPE_ERRORFLAG_PID (1 << 2)
125
126 /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware data PID error occurred in the pipe. */
127 #define PIPE_ERRORFLAG_DATAPID (1 << 1)
128
129 /** Mask for \ref Pipe_GetErrorFlags(), indicating that a hardware data toggle error occurred in the pipe. */
130 #define PIPE_ERRORFLAG_DATATGL (1 << 0)
131
132 /** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a SETUP token (for CONTROL type pipes),
133 * which will trigger a control request on the attached device when data is written to the pipe.
134 */
135 #define PIPE_TOKEN_SETUP (0 << PTOKEN0)
136
137 /** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a IN token (for non-CONTROL type pipes),
138 * indicating that the pipe data will flow from device to host.
139 */
140 #define PIPE_TOKEN_IN (1 << PTOKEN0)
141
142 /** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a OUT token (for non-CONTROL type pipes),
143 * indicating that the pipe data will flow from host to device.
144 */
145 #define PIPE_TOKEN_OUT (2 << PTOKEN0)
146
147 /** Mask for the bank mode selection for the \ref Pipe_ConfigurePipe() macro. This indicates that the pipe
148 * should have one single bank, which requires less USB FIFO memory but results in slower transfers as
149 * only one USB device (the AVR or the attached device) can access the pipe's bank at the one time.
150 */
151 #define PIPE_BANK_SINGLE (0 << EPBK0)
152
153 /** Mask for the bank mode selection for the \ref Pipe_ConfigurePipe() macro. This indicates that the pipe
154 * should have two banks, which requires more USB FIFO memory but results in faster transfers as one
155 * USB device (the AVR or the attached device) can access one bank while the other accesses the second
156 * bank.
157 */
158 #define PIPE_BANK_DOUBLE (1 << EPBK0)
159
160 /** Pipe address for the default control pipe, which always resides in address 0. This is
161 * defined for convenience to give more readable code when used with the pipe macros.
162 */
163 #define PIPE_CONTROLPIPE 0
164
165 /** Default size of the default control pipe's bank, until altered by the Endpoint0Size value
166 * in the device descriptor of the attached device.
167 */
168 #define PIPE_CONTROLPIPE_DEFAULT_SIZE 64
169
170 /** Pipe number mask, for masking against pipe addresses to retrieve the pipe's numerical address
171 * in the device.
172 */
173 #define PIPE_PIPENUM_MASK 0x07
174
175 /** Total number of pipes (including the default control pipe at address 0) which may be used in
176 * the device. Different USB AVR models support different amounts of pipes, this value reflects
177 * the maximum number of pipes for the currently selected AVR model.
178 */
179 #define PIPE_TOTAL_PIPES 7
180
181 /** Size in bytes of the largest pipe bank size possible in the device. Not all banks on each AVR
182 * model supports the largest bank size possible on the device; different pipe numbers support
183 * different maximum bank sizes. This value reflects the largest possible bank of any pipe on the
184 * currently selected USB AVR model.
185 */
186 #define PIPE_MAX_SIZE 256
187
188 /** Endpoint number mask, for masking against endpoint addresses to retrieve the endpoint's
189 * numerical address in the attached device.
190 */
191 #define PIPE_EPNUM_MASK 0x0F
192
193 /** Endpoint direction mask, for masking against endpoint addresses to retrieve the endpoint's
194 * direction for comparing with the ENDPOINT_DESCRIPTOR_DIR_* masks.
195 */
196 #define PIPE_EPDIR_MASK 0x80
197
198 /* Pseudo-Function Macros: */
199 #if defined(__DOXYGEN__)
200 /** Indicates the number of bytes currently stored in the current pipes's selected bank.
201 *
202 * \note The return width of this function may differ, depending on the maximum pipe bank size
203 * of the selected AVR model.
204 *
205 * \ingroup Group_PipeRW
206 *
207 * \return Total number of bytes in the currently selected Pipe's FIFO buffer
208 */
209 static inline uint16_t Pipe_BytesInPipe(void);
210
211 /** Returns the pipe address of the currently selected pipe. This is typically used to save the
212 * currently selected pipe number so that it can be restored after another pipe has been manipulated.
213 *
214 * \return Index of the currently selected pipe
215 */
216 static inline uint8_t Pipe_GetCurrentPipe(void);
217
218 /** Selects the given pipe number. Any pipe operations which do not require the pipe number to be
219 * indicated will operate on the currently selected pipe.
220 *
221 * \param[in] PipeNumber Index of the pipe to select
222 */
223 static inline void Pipe_SelectPipe(uint8_t PipeNumber);
224
225 /** Resets the desired pipe, including the pipe banks and flags.
226 *
227 * \param[in] PipeNumber Index of the pipe to reset
228 */
229 static inline void Pipe_ResetPipe(uint8_t PipeNumber);
230
231 /** Enables the currently selected pipe so that data can be sent and received through it to and from
232 * an attached device.
233 *
234 * \note Pipes must first be configured properly via \ref Pipe_ConfigurePipe().
235 */
236 static inline void Pipe_EnablePipe(void);
237
238 /** Disables the currently selected pipe so that data cannot be sent and received through it to and
239 * from an attached device.
240 */
241 static inline void Pipe_DisablePipe(void);
242
243 /** Determines if the currently selected pipe is enabled, but not necessarily configured.
244 *
245 * \return Boolean True if the currently selected pipe is enabled, false otherwise
246 */
247 static inline bool Pipe_IsEnabled(void);
248
249 /** Gets the current pipe token, indicating the pipe's data direction and type.
250 *
251 * \return The current pipe token, as a PIPE_TOKEN_* mask
252 */
253 static inline uint8_t Pipe_GetPipeToken(void);
254
255 /** Sets the token for the currently selected pipe to one of the tokens specified by the PIPE_TOKEN_*
256 * masks. This can be used on CONTROL type pipes, to allow for bidirectional transfer of data during
257 * control requests, or on regular pipes to allow for half-duplex bidirectional data transfer to devices
258 * which have two endpoints of opposite direction sharing the same endpoint address within the device.
259 *
260 * \param[in] Token New pipe token to set the selected pipe to, as a PIPE_TOKEN_* mask
261 */
262 static inline void Pipe_SetPipeToken(uint8_t Token);
263
264 /** Configures the currently selected pipe to allow for an unlimited number of IN requests. */
265 static inline void Pipe_SetInfiniteINRequests(void);
266
267 /** Configures the currently selected pipe to only allow the specified number of IN requests to be
268 * accepted by the pipe before it is automatically frozen.
269 *
270 * \param[in] TotalINRequests Total number of IN requests that the pipe may receive before freezing
271 */
272 static inline void Pipe_SetFiniteINRequests(uint8_t TotalINRequests);
273
274 /** Determines if the currently selected pipe is configured.
275 *
276 * \return Boolean true if the selected pipe is configured, false otherwise
277 */
278 static inline bool Pipe_IsConfigured(void);
279
280 /** Retrieves the endpoint number of the endpoint within the attached device that the currently selected
281 * pipe is bound to.
282 *
283 * \return Endpoint number the currently selected pipe is bound to
284 */
285 static inline uint8_t Pipe_BoundEndpointNumber(void);
286
287 /** Sets the period between interrupts for an INTERRUPT type pipe to a specified number of milliseconds.
288 *
289 * \param[in] Milliseconds Number of milliseconds between each pipe poll
290 */
291 static inline void Pipe_SetInterruptPeriod(uint8_t Milliseconds);
292
293 /** Returns a mask indicating which pipe's interrupt periods have elapsed, indicating that the pipe should
294 * be serviced.
295 *
296 * \return Mask whose bits indicate which pipes have interrupted
297 */
298 static inline uint8_t Pipe_GetPipeInterrupts(void);
299
300 /** Determines if the specified pipe number has interrupted (valid only for INTERRUPT type
301 * pipes).
302 *
303 * \param[in] PipeNumber Index of the pipe whose interrupt flag should be tested
304 *
305 * \return Boolean true if the specified pipe has interrupted, false otherwise
306 */
307 static inline bool Pipe_HasPipeInterrupted(uint8_t PipeNumber);
308
309 /** Unfreezes the selected pipe, allowing it to communicate with an attached device. */
310 static inline void Pipe_Unfreeze(void);
311
312 /** Freezes the selected pipe, preventing it from communicating with an attached device. */
313 static inline void Pipe_Freeze(void);
314
315 /** Determines if the currently selected pipe is frozen, and not able to accept data.
316 *
317 * \return Boolean true if the currently selected pipe is frozen, false otherwise
318 */
319 static inline bool Pipe_IsFrozen(void);
320
321 /** Clears the master pipe error flag. */
322 static inline void Pipe_ClearError(void);
323
324 /** Determines if the master pipe error flag is set for the currently selected pipe, indicating that
325 * some sort of hardware error has occurred on the pipe.
326 *
327 * \see \ref Pipe_GetErrorFlags() macro for information on retrieving the exact error flag.
328 *
329 * \return Boolean true if an error has occurred on the selected pipe, false otherwise
330 */
331 static inline bool Pipe_IsError(void);
332
333 /** Clears all the currently selected pipe's hardware error flags, but does not clear the master error
334 * flag for the pipe.
335 */
336 static inline void Pipe_ClearErrorFlags(void);
337
338 /** Gets a mask of the hardware error flags which have occurred on the currently selected pipe. This
339 * value can then be masked against the PIPE_ERRORFLAG_* masks to determine what error has occurred.
340 *
341 * \return Mask comprising of PIPE_ERRORFLAG_* bits indicating what error has occurred on the selected pipe
342 */
343 static inline uint8_t Pipe_GetErrorFlags(void);
344
345 /** Determines if the currently selected pipe may be read from (if data is waiting in the pipe
346 * bank and the pipe is an IN direction, or if the bank is not yet full if the pipe is an OUT
347 * direction). This function will return false if an error has occurred in the pipe, or if the pipe
348 * is an IN direction and no packet (or an empty packet) has been received, or if the pipe is an OUT
349 * direction and the pipe bank is full.
350 *
351 * \note This function is not valid on CONTROL type pipes.
352 *
353 * \ingroup Group_PipePacketManagement
354 *
355 * \return Boolean true if the currently selected pipe may be read from or written to, depending on its direction
356 */
357 static inline bool Pipe_IsReadWriteAllowed(void);
358
359 /** Determines if an IN request has been received on the currently selected pipe.
360 *
361 * \ingroup Group_PipePacketManagement
362 *
363 * \return Boolean true if the current pipe has received an IN packet, false otherwise.
364 */
365 static inline bool Pipe_IsINReceived(void);
366
367 /** Determines if the currently selected pipe is ready to send an OUT request.
368 *
369 * \ingroup Group_PipePacketManagement
370 *
371 * \return Boolean true if the current pipe is ready for an OUT packet, false otherwise.
372 */
373 static inline bool Pipe_IsOUTReady(void);
374
375 /** Determines if no SETUP request is currently being sent to the attached device on the selected
376 * CONTROL type pipe.
377 *
378 * \ingroup Group_PipePacketManagement
379 *
380 * \return Boolean true if the current pipe is ready for a SETUP packet, false otherwise.
381 */
382 static inline bool Pipe_IsSETUPSent(void);
383
384 /** Sends the currently selected CONTROL type pipe's contents to the device as a SETUP packet.
385 *
386 * \ingroup Group_PipePacketManagement
387 */
388 static inline void Pipe_ClearSETUP(void);
389
390 /** Acknowledges the reception of a setup IN request from the attached device on the currently selected
391 * pipe, freeing the bank ready for the next packet.
392 *
393 * \ingroup Group_PipePacketManagement
394 */
395 static inline void Pipe_ClearIN(void);
396
397 /** Sends the currently selected pipe's contents to the device as an OUT packet on the selected pipe, freeing
398 * the bank ready for the next packet.
399 *
400 * \ingroup Group_PipePacketManagement
401 */
402 static inline void Pipe_ClearOUT(void);
403
404 /** Determines if the device sent a NAK (Negative Acknowledge) in response to the last sent packet on
405 * the currently selected pipe. This occurs when the host sends a packet to the device, but the device
406 * is not currently ready to handle the packet (i.e. its endpoint banks are full). Once a NAK has been
407 * received, it must be cleared using \ref Pipe_ClearNAKReceived() before the previous (or any other) packet
408 * can be re-sent.
409 *
410 * \ingroup Group_PipePacketManagement
411 *
412 * \return Boolean true if an NAK has been received on the current pipe, false otherwise
413 */
414 static inline bool Pipe_IsNAKReceived(void);
415
416 /** Clears the NAK condition on the currently selected pipe.
417 *
418 * \ingroup Group_PipePacketManagement
419 *
420 * \see \ref Pipe_IsNAKReceived() for more details.
421 */
422 static inline void Pipe_ClearNAKReceived(void);
423
424 /** Determines if the currently selected pipe has had the STALL condition set by the attached device.
425 *
426 * \ingroup Group_PipePacketManagement
427 *
428 * \return Boolean true if the current pipe has been stalled by the attached device, false otherwise
429 */
430 static inline bool Pipe_IsStalled(void);
431
432 /** Clears the STALL condition detection flag on the currently selected pipe, but does not clear the
433 * STALL condition itself (this must be done via a ClearFeature control request to the device).
434 *
435 * \ingroup Group_PipePacketManagement
436 */
437 static inline void Pipe_ClearStall(void);
438 #else
439 #define Pipe_BytesInPipe() UPBCX
440
441 #define Pipe_GetCurrentPipe() (UPNUM & PIPE_PIPENUM_MASK)
442
443 #define Pipe_SelectPipe(pipenum) MACROS{ UPNUM = (pipenum); }MACROE
444
445 #define Pipe_ResetPipe(pipenum) MACROS{ UPRST = (1 << (pipenum)); UPRST = 0; }MACROE
446
447 #define Pipe_EnablePipe() MACROS{ UPCONX |= (1 << PEN); }MACROE
448
449 #define Pipe_DisablePipe() MACROS{ UPCONX &= ~(1 << PEN); }MACROE
450
451 #define Pipe_IsEnabled() ((UPCONX & (1 << PEN)) ? true : false)
452
453 #define Pipe_GetPipeToken() (UPCFG0X & PIPE_TOKEN_MASK)
454
455 #define Pipe_SetPipeToken(token) MACROS{ UPCFG0X = ((UPCFG0X & ~PIPE_TOKEN_MASK) | (token)); }MACROE
456
457 #define Pipe_SetInfiniteINRequests() MACROS{ UPCONX |= (1 << INMODE); }MACROE
458
459 #define Pipe_SetFiniteINRequests(n) MACROS{ UPCONX &= ~(1 << INMODE); UPINRQX = (n); }MACROE
460
461 #define Pipe_IsConfigured() ((UPSTAX & (1 << CFGOK)) ? true : false)
462
463 #define Pipe_BoundEndpointNumber() ((UPCFG0X >> PEPNUM0) & PIPE_EPNUM_MASK)
464
465 #define Pipe_SetInterruptPeriod(ms) MACROS{ UPCFG2X = (ms); }MACROE
466
467 #define Pipe_GetPipeInterrupts() UPINT
468
469 #define Pipe_HasPipeInterrupted(n) ((UPINT & (1 << (n))) ? true : false)
470
471 #define Pipe_Unfreeze() MACROS{ UPCONX &= ~(1 << PFREEZE); }MACROE
472
473 #define Pipe_Freeze() MACROS{ UPCONX |= (1 << PFREEZE); }MACROE
474
475 #define Pipe_IsFrozen() ((UPCONX & (1 << PFREEZE)) ? true : false)
476
477 #define Pipe_ClearError() MACROS{ UPINTX &= ~(1 << PERRI); }MACROE
478
479 #define Pipe_IsError() ((UPINTX & (1 << PERRI)) ? true : false)
480
481 #define Pipe_ClearErrorFlags() MACROS{ UPERRX = 0; }MACROE
482
483 #define Pipe_GetErrorFlags() ((UPERRX & (PIPE_ERRORFLAG_CRC16 | PIPE_ERRORFLAG_TIMEOUT | \
484 PIPE_ERRORFLAG_PID | PIPE_ERRORFLAG_DATAPID | \
485 PIPE_ERRORFLAG_DATATGL)) | \
486 (UPSTAX & PIPE_ERRORFLAG_OVERFLOW | PIPE_ERRORFLAG_UNDERFLOW))
487
488 #define Pipe_IsReadWriteAllowed() ((UPINTX & (1 << RWAL)) ? true : false)
489
490 #define Pipe_IsINReceived() ((UPINTX & (1 << RXINI)) ? true : false)
491
492 #define Pipe_IsOUTReady() ((UPINTX & (1 << TXOUTI)) ? true : false)
493
494 #define Pipe_IsSETUPSent() ((UPINTX & (1 << TXSTPI)) ? true : false)
495
496 #define Pipe_ClearIN() MACROS{ uint8_t Temp = UPINTX; UPINTX = (Temp & ~(1 << RXINI)); \
497 UPINTX = (Temp & ~(1 << FIFOCON)); }MACROE
498
499 #define Pipe_ClearOUT() MACROS{ uint8_t Temp = UPINTX; UPINTX = (Temp & ~(1 << TXOUTI)); \
500 UPINTX = (Temp & ~(1 << FIFOCON)); }MACROE
501
502 #define Pipe_ClearSETUP() MACROS{ uint8_t Temp = UPINTX; UPINTX = (Temp & ~(1 << TXSTPI)); \
503 UPINTX = (Temp & ~(1 << FIFOCON)); }MACROE
504
505 #define Pipe_IsNAKReceived() ((UPINTX & (1 << NAKEDI)) ? true : false)
506
507 #define Pipe_ClearNAKReceived() MACROS{ UPINTX &= ~(1 << NAKEDI); }MACROE
508
509 #define Pipe_IsStalled() ((UPINTX & (1 << RXSTALLI)) ? true : false)
510
511 #define Pipe_ClearStall() MACROS{ UPINTX &= ~(1 << RXSTALLI); }MACROE
512 #endif
513
514 /* Enums: */
515 /** Enum for the possible error return codes of the Pipe_WaitUntilReady function
516 *
517 * \ingroup Group_PipeRW
518 */
519 enum Pipe_WaitUntilReady_ErrorCodes_t
520 {
521 PIPE_READYWAIT_NoError = 0, /**< Pipe ready for next packet, no error */
522 PIPE_READYWAIT_PipeStalled = 1, /**< The device stalled the pipe while waiting. */
523 PIPE_READYWAIT_DeviceDisconnected = 2, /**< Device was disconnected from the host while waiting. */
524 PIPE_READYWAIT_Timeout = 3, /**< The device failed to accept or send the next packet
525 * within the software timeout period set by the
526 * \ref USB_STREAM_TIMEOUT_MS macro.
527 */
528 };
529
530 /** Enum for the possible error return codes of the Pipe_*_Stream_* functions.
531 *
532 * \ingroup Group_PipeRW
533 */
534 enum Pipe_Stream_RW_ErrorCodes_t
535 {
536 PIPE_RWSTREAM_NoError = 0, /**< Command completed successfully, no error. */
537 PIPE_RWSTREAM_PipeStalled = 1, /**< The device stalled the pipe during the transfer. */
538 PIPE_RWSTREAM_DeviceDisconnected = 2, /**< Device was disconnected from the host during
539 * the transfer.
540 */
541 PIPE_RWSTREAM_Timeout = 3, /**< The device failed to accept or send the next packet
542 * within the software timeout period set by the
543 * \ref USB_STREAM_TIMEOUT_MS macro.
544 */
545 PIPE_RWSTREAM_CallbackAborted = 4, /**< Indicates that the stream's callback function aborted
546 * the transfer early.
547 */
548 };
549
550 /* Inline Functions: */
551 /** Reads one byte from the currently selected pipe's bank, for OUT direction pipes.
552 *
553 * \ingroup Group_PipePrimitiveRW
554 *
555 * \return Next byte in the currently selected pipe's FIFO buffer
556 */
557 static inline uint8_t Pipe_Read_Byte(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
558 static inline uint8_t Pipe_Read_Byte(void)
559 {
560 return UPDATX;
561 }
562
563 /** Writes one byte from the currently selected pipe's bank, for IN direction pipes.
564 *
565 * \ingroup Group_PipePrimitiveRW
566 *
567 * \param[in] Byte Next byte to write into the the currently selected pipe's FIFO buffer
568 */
569 static inline void Pipe_Write_Byte(const uint8_t Byte) ATTR_ALWAYS_INLINE;
570 static inline void Pipe_Write_Byte(const uint8_t Byte)
571 {
572 UPDATX = Byte;
573 }
574
575 /** Discards one byte from the currently selected pipe's bank, for OUT direction pipes.
576 *
577 * \ingroup Group_PipePrimitiveRW
578 */
579 static inline void Pipe_Discard_Byte(void) ATTR_ALWAYS_INLINE;
580 static inline void Pipe_Discard_Byte(void)
581 {
582 uint8_t Dummy;
583
584 Dummy = UPDATX;
585 }
586
587 /** Reads two bytes from the currently selected pipe's bank in little endian format, for OUT
588 * direction pipes.
589 *
590 * \ingroup Group_PipePrimitiveRW
591 *
592 * \return Next word in the currently selected pipe's FIFO buffer
593 */
594 static inline uint16_t Pipe_Read_Word_LE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
595 static inline uint16_t Pipe_Read_Word_LE(void)
596 {
597 union
598 {
599 uint16_t Word;
600 uint8_t Bytes[2];
601 } Data;
602
603 Data.Bytes[0] = UPDATX;
604 Data.Bytes[1] = UPDATX;
605
606 return Data.Word;
607 }
608
609 /** Reads two bytes from the currently selected pipe's bank in big endian format, for OUT
610 * direction pipes.
611 *
612 * \ingroup Group_PipePrimitiveRW
613 *
614 * \return Next word in the currently selected pipe's FIFO buffer
615 */
616 static inline uint16_t Pipe_Read_Word_BE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
617 static inline uint16_t Pipe_Read_Word_BE(void)
618 {
619 union
620 {
621 uint16_t Word;
622 uint8_t Bytes[2];
623 } Data;
624
625 Data.Bytes[1] = UPDATX;
626 Data.Bytes[0] = UPDATX;
627
628 return Data.Word;
629 }
630
631 /** Writes two bytes to the currently selected pipe's bank in little endian format, for IN
632 * direction pipes.
633 *
634 * \ingroup Group_PipePrimitiveRW
635 *
636 * \param[in] Word Next word to write to the currently selected pipe's FIFO buffer
637 */
638 static inline void Pipe_Write_Word_LE(const uint16_t Word) ATTR_ALWAYS_INLINE;
639 static inline void Pipe_Write_Word_LE(const uint16_t Word)
640 {
641 UPDATX = (Word & 0xFF);
642 UPDATX = (Word >> 8);
643 }
644
645 /** Writes two bytes to the currently selected pipe's bank in big endian format, for IN
646 * direction pipes.
647 *
648 * \ingroup Group_PipePrimitiveRW
649 *
650 * \param[in] Word Next word to write to the currently selected pipe's FIFO buffer
651 */
652 static inline void Pipe_Write_Word_BE(const uint16_t Word) ATTR_ALWAYS_INLINE;
653 static inline void Pipe_Write_Word_BE(const uint16_t Word)
654 {
655 UPDATX = (Word >> 8);
656 UPDATX = (Word & 0xFF);
657 }
658
659 /** Discards two bytes from the currently selected pipe's bank, for OUT direction pipes.
660 *
661 * \ingroup Group_PipePrimitiveRW
662 */
663 static inline void Pipe_Discard_Word(void) ATTR_ALWAYS_INLINE;
664 static inline void Pipe_Discard_Word(void)
665 {
666 uint8_t Dummy;
667
668 Dummy = UPDATX;
669 Dummy = UPDATX;
670 }
671
672 /** Reads four bytes from the currently selected pipe's bank in little endian format, for OUT
673 * direction pipes.
674 *
675 * \ingroup Group_PipePrimitiveRW
676 *
677 * \return Next double word in the currently selected pipe's FIFO buffer
678 */
679 static inline uint32_t Pipe_Read_DWord_LE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
680 static inline uint32_t Pipe_Read_DWord_LE(void)
681 {
682 union
683 {
684 uint32_t DWord;
685 uint8_t Bytes[4];
686 } Data;
687
688 Data.Bytes[0] = UPDATX;
689 Data.Bytes[1] = UPDATX;
690 Data.Bytes[2] = UPDATX;
691 Data.Bytes[3] = UPDATX;
692
693 return Data.DWord;
694 }
695
696 /** Reads four bytes from the currently selected pipe's bank in big endian format, for OUT
697 * direction pipes.
698 *
699 * \ingroup Group_PipePrimitiveRW
700 *
701 * \return Next double word in the currently selected pipe's FIFO buffer
702 */
703 static inline uint32_t Pipe_Read_DWord_BE(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
704 static inline uint32_t Pipe_Read_DWord_BE(void)
705 {
706 union
707 {
708 uint32_t DWord;
709 uint8_t Bytes[4];
710 } Data;
711
712 Data.Bytes[3] = UPDATX;
713 Data.Bytes[2] = UPDATX;
714 Data.Bytes[1] = UPDATX;
715 Data.Bytes[0] = UPDATX;
716
717 return Data.DWord;
718 }
719
720 /** Writes four bytes to the currently selected pipe's bank in little endian format, for IN
721 * direction pipes.
722 *
723 * \ingroup Group_PipePrimitiveRW
724 *
725 * \param[in] DWord Next double word to write to the currently selected pipe's FIFO buffer
726 */
727 static inline void Pipe_Write_DWord_LE(const uint32_t DWord) ATTR_ALWAYS_INLINE;
728 static inline void Pipe_Write_DWord_LE(const uint32_t DWord)
729 {
730 UPDATX = (DWord & 0xFF);
731 UPDATX = (DWord >> 8);
732 UPDATX = (DWord >> 16);
733 UPDATX = (DWord >> 24);
734 }
735
736 /** Writes four bytes to the currently selected pipe's bank in big endian format, for IN
737 * direction pipes.
738 *
739 * \ingroup Group_PipePrimitiveRW
740 *
741 * \param[in] DWord Next double word to write to the currently selected pipe's FIFO buffer
742 */
743 static inline void Pipe_Write_DWord_BE(const uint32_t DWord) ATTR_ALWAYS_INLINE;
744 static inline void Pipe_Write_DWord_BE(const uint32_t DWord)
745 {
746 UPDATX = (DWord >> 24);
747 UPDATX = (DWord >> 16);
748 UPDATX = (DWord >> 8);
749 UPDATX = (DWord & 0xFF);
750 }
751
752 /** Discards four bytes from the currently selected pipe's bank, for OUT direction pipes.
753 *
754 * \ingroup Group_PipePrimitiveRW
755 */
756 static inline void Pipe_Discard_DWord(void) ATTR_ALWAYS_INLINE;
757 static inline void Pipe_Discard_DWord(void)
758 {
759 uint8_t Dummy;
760
761 Dummy = UPDATX;
762 Dummy = UPDATX;
763 Dummy = UPDATX;
764 Dummy = UPDATX;
765 }
766
767 /* External Variables: */
768 /** Global indicating the maximum packet size of the default control pipe located at address
769 * 0 in the device. This value is set to the value indicated in the attached device's device
770 * descriptor once the USB interface is initialized into host mode and a device is attached
771 * to the USB bus.
772 *
773 * \note This variable should be treated as read-only in the user application, and never manually
774 * changed in value.
775 */
776 extern uint8_t USB_ControlPipeSize;
777
778 /* Function Prototypes: */
779 #if !defined(NO_STREAM_CALLBACKS) || defined(__DOXYGEN__)
780 #define __CALLBACK_PARAM , StreamCallbackPtr_t Callback
781 #else
782 #define __CALLBACK_PARAM
783 #endif
784
785 /** Configures the specified pipe number with the given pipe type, token, target endpoint number in the
786 * attached device, bank size and banking mode. Pipes should be allocated in ascending order by their
787 * address in the device (i.e. pipe 1 should be configured before pipe 2 and so on) to prevent fragmentation
788 * of the USB FIFO memory.
789 *
790 * The pipe type may be one of the EP_TYPE_* macros listed in LowLevel.h, the token may be one of the
791 * PIPE_TOKEN_* masks.
792 *
793 * The bank size must indicate the maximum packet size that the pipe can handle. Different pipe
794 * numbers can handle different maximum packet sizes - refer to the chosen USB AVR's datasheet to
795 * determine the maximum bank size for each pipe.
796 *
797 * The banking mode may be either \ref PIPE_BANK_SINGLE or \ref PIPE_BANK_DOUBLE.
798 *
799 * A newly configured pipe is frozen by default, and must be unfrozen before use via the \ref Pipe_Unfreeze()
800 * before being used. Pipes should be kept frozen unless waiting for data from a device while in IN mode, or
801 * sending data to the device in OUT mode. IN type pipes are also automatically configured to accept infinite
802 * numbers of IN requests without automatic freezing - this can be overridden by a call to
803 * \ref Pipe_SetFiniteINRequests().
804 *
805 * \note The default control pipe does not have to be manually configured, as it is automatically
806 * configured by the library internally.
807 *
808 * \note This routine will select the specified pipe, and the pipe will remain selected once the
809 * routine completes regardless of if the pipe configuration succeeds.
810 *
811 * \return Boolean true if the configuration is successful, false otherwise
812 */
813 bool Pipe_ConfigurePipe(const uint8_t Number, const uint8_t Type, const uint8_t Token, const uint8_t EndpointNumber,
814 const uint16_t Size, const uint8_t Banks);
815
816 /** Spin-loops until the currently selected non-control pipe is ready for the next packed of data to be read
817 * or written to it, aborting in the case of an error condition (such as a timeout or device disconnect).
818 *
819 * \ingroup Group_PipeRW
820 *
821 * \return A value from the Pipe_WaitUntilReady_ErrorCodes_t enum.
822 */
823 uint8_t Pipe_WaitUntilReady(void);
824
825 /** Determines if a pipe has been bound to the given device endpoint address. If a pipe which is bound to the given
826 * endpoint is found, it is automatically selected.
827 *
828 * \param[in] EndpointAddress Address and direction mask of the endpoint within the attached device to check
829 *
830 * \return Boolean true if a pipe bound to the given endpoint address of the specified direction is found, false
831 * otherwise
832 */
833 bool Pipe_IsEndpointBound(const uint8_t EndpointAddress);
834
835 /** Reads and discards the given number of bytes from the pipe, discarding fully read packets from the host
836 * as needed. The last packet is not automatically discarded once the remaining bytes has been read; the
837 * user is responsible for manually discarding the last packet from the device via the \ref Pipe_ClearIN() macro.
838 * Between each USB packet, the given stream callback function is executed repeatedly until the next packet is ready,
839 * allowing for early aborts of stream transfers.
840 *
841 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
842 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
843 * disabled and this function has the Callback parameter omitted.
844 *
845 * The pipe token is set automatically, thus this can be used on bi-directional pipes directly without
846 * having to explicitly change the data direction with a call to \ref Pipe_SetPipeToken().
847 *
848 * \ingroup Group_PipeStreamRW
849 *
850 * \param[in] Length Number of bytes to send via the currently selected pipe.
851 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
852 *
853 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
854 */
855 uint8_t Pipe_Discard_Stream(uint16_t Length __CALLBACK_PARAM);
856
857 /** Writes the given number of bytes to the pipe from the given buffer in little endian,
858 * sending full packets to the device as needed. The last packet filled is not automatically sent;
859 * the user is responsible for manually sending the last written packet to the host via the
860 * \ref Pipe_ClearOUT() macro. Between each USB packet, the given stream callback function is
861 * executed repeatedly until the next packet is ready, allowing for early aborts of stream transfers.
862 *
863 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
864 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
865 * disabled and this function has the Callback parameter omitted.
866 *
867 * The pipe token is set automatically, thus this can be used on bi-directional pipes directly without
868 * having to explicitly change the data direction with a call to \ref Pipe_SetPipeToken().
869 *
870 * \ingroup Group_PipeStreamRW
871 *
872 * \param[in] Buffer Pointer to the source data buffer to read from.
873 * \param[in] Length Number of bytes to read for the currently selected pipe into the buffer.
874 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
875 *
876 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
877 */
878 uint8_t Pipe_Write_Stream_LE(const void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
879
880 /** EEPROM buffer source version of \ref Pipe_Write_Stream_LE().
881 *
882 * \ingroup Group_PipeStreamRW
883 *
884 * \param[in] Buffer Pointer to the source data buffer to read from.
885 * \param[in] Length Number of bytes to read for the currently selected pipe into the buffer.
886 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
887 *
888 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
889 */
890 uint8_t Pipe_Write_EStream_LE(const void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
891
892 /** FLASH buffer source version of \ref Pipe_Write_Stream_LE().
893 *
894 * \note The FLASH data must be located in the first 64KB of FLASH for this function to work correctly.
895 *
896 * \ingroup Group_PipeStreamRW
897 *
898 * \param[in] Buffer Pointer to the source data buffer to read from.
899 * \param[in] Length Number of bytes to read for the currently selected pipe into the buffer.
900 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
901 *
902 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
903 */
904 uint8_t Pipe_Write_PStream_LE(const void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
905
906 /** Writes the given number of bytes to the pipe from the given buffer in big endian,
907 * sending full packets to the device as needed. The last packet filled is not automatically sent;
908 * the user is responsible for manually sending the last written packet to the host via the
909 * \ref Pipe_ClearOUT() macro. Between each USB packet, the given stream callback function is
910 * executed repeatedly until the next packet is ready, allowing for early aborts of stream transfers.
911 *
912 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
913 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
914 * disabled and this function has the Callback parameter omitted.
915 *
916 * The pipe token is set automatically, thus this can be used on bi-directional pipes directly without
917 * having to explicitly change the data direction with a call to \ref Pipe_SetPipeToken().
918 *
919 * \ingroup Group_PipeStreamRW
920 *
921 * \param[in] Buffer Pointer to the source data buffer to read from.
922 * \param[in] Length Number of bytes to read for the currently selected pipe into the buffer.
923 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
924 *
925 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
926 */
927 uint8_t Pipe_Write_Stream_BE(const void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
928
929 /** EEPROM buffer source version of \ref Pipe_Write_Stream_BE().
930 *
931 * \ingroup Group_PipeStreamRW
932 *
933 * \param[in] Buffer Pointer to the source data buffer to read from.
934 * \param[in] Length Number of bytes to read for the currently selected pipe into the buffer.
935 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
936 *
937 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
938 */
939 uint8_t Pipe_Write_EStream_BE(const void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
940
941 /** FLASH buffer source version of \ref Pipe_Write_Stream_BE().
942 *
943 * \note The FLASH data must be located in the first 64KB of FLASH for this function to work correctly.
944 *
945 * \ingroup Group_PipeStreamRW
946 *
947 * \param[in] Buffer Pointer to the source data buffer to read from.
948 * \param[in] Length Number of bytes to read for the currently selected pipe into the buffer.
949 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
950 *
951 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
952 */
953 uint8_t Pipe_Write_PStream_BE(const void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
954
955 /** Reads the given number of bytes from the pipe into the given buffer in little endian,
956 * sending full packets to the device as needed. The last packet filled is not automatically sent;
957 * the user is responsible for manually sending the last written packet to the host via the
958 * \ref Pipe_ClearIN() macro. Between each USB packet, the given stream callback function is
959 * executed repeatedly until the next packet is ready, allowing for early aborts of stream transfers.
960 *
961 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
962 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
963 * disabled and this function has the Callback parameter omitted.
964 *
965 * The pipe token is set automatically, thus this can be used on bi-directional pipes directly without
966 * having to explicitly change the data direction with a call to \ref Pipe_SetPipeToken().
967 *
968 * \ingroup Group_PipeStreamRW
969 *
970 * \param[out] Buffer Pointer to the source data buffer to write to.
971 * \param[in] Length Number of bytes to read for the currently selected pipe to read from.
972 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
973 *
974 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
975 */
976 uint8_t Pipe_Read_Stream_LE(void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
977
978 /** EEPROM buffer source version of \ref Pipe_Read_Stream_LE().
979 *
980 * \ingroup Group_PipeStreamRW
981 *
982 * \param[out] Buffer Pointer to the source data buffer to write to.
983 * \param[in] Length Number of bytes to read for the currently selected pipe to read from.
984 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
985 *
986 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
987 */
988 uint8_t Pipe_Read_EStream_LE(void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
989
990 /** Reads the given number of bytes from the pipe into the given buffer in big endian,
991 * sending full packets to the device as needed. The last packet filled is not automatically sent;
992 * the user is responsible for manually sending the last written packet to the host via the
993 * \ref Pipe_ClearIN() macro. Between each USB packet, the given stream callback function is
994 * executed repeatedly until the next packet is ready, allowing for early aborts of stream transfers.
995 *
996 * The callback routine should be created according to the information in \ref Group_StreamCallbacks.
997 * If the token NO_STREAM_CALLBACKS is passed via the -D option to the compiler, stream callbacks are
998 * disabled and this function has the Callback parameter omitted.
999 *
1000 * The pipe token is set automatically, thus this can be used on bi-directional pipes directly without
1001 * having to explicitly change the data direction with a call to \ref Pipe_SetPipeToken().
1002 *
1003 * \ingroup Group_PipeStreamRW
1004 *
1005 * \param[out] Buffer Pointer to the source data buffer to write to.
1006 * \param[in] Length Number of bytes to read for the currently selected pipe to read from.
1007 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
1008 *
1009 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
1010 */
1011 uint8_t Pipe_Read_Stream_BE(void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
1012
1013 /** EEPROM buffer source version of \ref Pipe_Read_Stream_BE().
1014 *
1015 * \ingroup Group_PipeStreamRW
1016 *
1017 * \param[out] Buffer Pointer to the source data buffer to write to.
1018 * \param[in] Length Number of bytes to read for the currently selected pipe to read from.
1019 * \param[in] Callback Name of a callback routine to call between successive USB packet transfers, NULL if no callback
1020 *
1021 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
1022 */
1023 uint8_t Pipe_Read_EStream_BE(void* Buffer, uint16_t Length __CALLBACK_PARAM) ATTR_NON_NULL_PTR_ARG(1);
1024
1025 /* Private Interface - For use in library only: */
1026 #if !defined(__DOXYGEN__)
1027 /* Macros: */
1028 #define PIPE_TOKEN_MASK (0x03 << PTOKEN0)
1029
1030 #if !defined(ENDPOINT_CONTROLEP)
1031 #define ENDPOINT_CONTROLEP 0
1032 #endif
1033
1034 #define Pipe_AllocateMemory() MACROS{ UPCFG1X |= (1 << ALLOC); }MACROE
1035 #define Pipe_DeallocateMemory() MACROS{ UPCFG1X &= ~(1 << ALLOC); }MACROE
1036
1037 /* Function Prototypes: */
1038 void Pipe_ClearPipes(void);
1039
1040 /* Inline Functions: */
1041 static inline uint8_t Pipe_BytesToEPSizeMask(uint16_t Bytes) ATTR_WARN_UNUSED_RESULT ATTR_CONST ATTR_ALWAYS_INLINE;
1042 static inline uint8_t Pipe_BytesToEPSizeMask(uint16_t Bytes)
1043 {
1044 if (Bytes <= 8)
1045 return (0 << EPSIZE0);
1046 else if (Bytes <= 16)
1047 return (1 << EPSIZE0);
1048 else if (Bytes <= 32)
1049 return (2 << EPSIZE0);
1050 else if (Bytes <= 64)
1051 return (3 << EPSIZE0);
1052 else if (Bytes <= 128)
1053 return (4 << EPSIZE0);
1054 else
1055 return (5 << EPSIZE0);
1056 }
1057
1058 #endif
1059
1060 /* Disable C linkage for C++ Compilers: */
1061 #if defined(__cplusplus)
1062 }
1063 #endif
1064
1065 #endif
1066
1067 /** @} */