diff options
| author | hathach <[email protected]> | 2021-07-13 20:24:12 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-07-13 20:41:28 +0700 |
| commit | 137dff620bc5890afdf59a61cebe355fc6999f12 (patch) | |
| tree | d586c6e8cf6ca6dc3e2f48024a7a706640b98a69 /src/common/tusb_fifo.h | |
| parent | ecb100a62fa99335fc41dca3d7c85a3903a7df65 (diff) | |
add option to silent a driver log
Diffstat (limited to 'src/common/tusb_fifo.h')
| -rw-r--r-- | src/common/tusb_fifo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tusb_fifo.h b/src/common/tusb_fifo.h index de2ae163d..18db289a1 100644 --- a/src/common/tusb_fifo.h +++ b/src/common/tusb_fifo.h @@ -120,9 +120,9 @@ bool tu_fifo_peek (tu_fifo_t* f, void * p_buffer); uint16_t tu_fifo_peek_n (tu_fifo_t* f, void * p_buffer, uint16_t n); uint16_t tu_fifo_count (tu_fifo_t* f); +uint16_t tu_fifo_remaining (tu_fifo_t* f); bool tu_fifo_empty (tu_fifo_t* f); bool tu_fifo_full (tu_fifo_t* f); -uint16_t tu_fifo_remaining (tu_fifo_t* f); bool tu_fifo_overflowed (tu_fifo_t* f); void tu_fifo_correct_read_pointer (tu_fifo_t* f); |
