summaryrefslogtreecommitdiff
path: root/tinyusb/common/fifo.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2012-12-03 19:02:36 +0700
committerhathach <[email protected]>2012-12-03 19:02:36 +0700
commit921561be607a9ec3edd059de8e5d7b7f75dd2f76 (patch)
tree48a8945a766e74143d859687008e8fc81749b349 /tinyusb/common/fifo.h
parent6ea85a569a0637194a8fac1d15cfade58095c449 (diff)
change editor tab to 2 spaces.
Diffstat (limited to 'tinyusb/common/fifo.h')
-rw-r--r--tinyusb/common/fifo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/tinyusb/common/fifo.h b/tinyusb/common/fifo.h
index 6ce602456..d9e8389f1 100644
--- a/tinyusb/common/fifo.h
+++ b/tinyusb/common/fifo.h
@@ -60,13 +60,13 @@
*/
typedef struct _fifo_t
{
- uint8_t* buf; ///< buffer pointer
- uint16_t size; ///< buffer size
- volatile uint16_t len; ///< bytes in fifo
- volatile uint16_t wr_ptr; ///< write pointer
- volatile uint16_t rd_ptr; ///< read pointer
- bool overwritable; ///< allow overwrite data when full
- IRQn_Type irq; ///< interrupt used to lock fifo
+ uint8_t* buf ; ///< buffer pointer
+ uint16_t size ; ///< buffer size
+ volatile uint16_t len ; ///< bytes in fifo
+ volatile uint16_t wr_ptr ; ///< write pointer
+ volatile uint16_t rd_ptr ; ///< read pointer
+ bool overwritable ; ///< allow overwrite data when full
+ IRQn_Type irq ; ///< interrupt used to lock fifo
} fifo_t;