diff options
| author | hathach <[email protected]> | 2012-11-29 15:35:59 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2012-11-29 15:35:59 +0700 |
| commit | 360b28b44fa2ad7973f06c7f048a66a68e6cb90f (patch) | |
| tree | a80ef4f6ba6282faa2fd13cc18689667f47626e9 /tinyusb/common/fifo.h | |
| parent | 382cd30be2e3069a490977e1a492783188a02da0 (diff) | |
add more doxygen docs
start to use TUSB_Error_t
Diffstat (limited to 'tinyusb/common/fifo.h')
| -rw-r--r-- | tinyusb/common/fifo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tinyusb/common/fifo.h b/tinyusb/common/fifo.h index 4a0bfc340..3ee9da7e6 100644 --- a/tinyusb/common/fifo.h +++ b/tinyusb/common/fifo.h @@ -51,10 +51,10 @@ #include "common/common.h" -/** - * \brief Simple FIFO +/** \struct fifo_t + * \brief Simple Circular FIFO */ -typedef struct +typedef struct _fifo_t { uint8_t* buf; ///< buffer pointer uint16_t size; ///< buffer size |
