From 921561be607a9ec3edd059de8e5d7b7f75dd2f76 Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 3 Dec 2012 19:02:36 +0700 Subject: change editor tab to 2 spaces. --- tinyusb/common/fifo.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tinyusb/common/fifo.h') 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; -- cgit v1.3.1