diff options
| author | hathach <[email protected]> | 2012-12-03 19:02:36 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2012-12-03 19:02:36 +0700 |
| commit | 921561be607a9ec3edd059de8e5d7b7f75dd2f76 (patch) | |
| tree | 48a8945a766e74143d859687008e8fc81749b349 /tinyusb/common/fifo.h | |
| parent | 6ea85a569a0637194a8fac1d15cfade58095c449 (diff) | |
change editor tab to 2 spaces.
Diffstat (limited to 'tinyusb/common/fifo.h')
| -rw-r--r-- | tinyusb/common/fifo.h | 14 |
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; |
