mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
make function prototypes match ( found by cppcheck)
This commit is contained in:
parent
4349e99fb2
commit
8ab1e4fbd0
@ -154,14 +154,14 @@ void tu_fifo_config_mutex(tu_fifo_t *f, osal_mutex_t wr_mutex, osal_mutex_t rd_m
|
|||||||
#define tu_fifo_config_mutex(_f, _wr_mutex, _rd_mutex)
|
#define tu_fifo_config_mutex(_f, _wr_mutex, _rd_mutex)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool tu_fifo_write (tu_fifo_t* f, void const * p_data);
|
bool tu_fifo_write (tu_fifo_t* f, void const * data);
|
||||||
uint16_t tu_fifo_write_n (tu_fifo_t* f, void const * p_data, uint16_t n);
|
uint16_t tu_fifo_write_n (tu_fifo_t* f, void const * data, uint16_t n);
|
||||||
#ifdef TUP_MEM_CONST_ADDR
|
#ifdef TUP_MEM_CONST_ADDR
|
||||||
uint16_t tu_fifo_write_n_const_addr_full_words (tu_fifo_t* f, const void * data, uint16_t n);
|
uint16_t tu_fifo_write_n_const_addr_full_words (tu_fifo_t* f, const void * data, uint16_t n);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool tu_fifo_read (tu_fifo_t* f, void * p_buffer);
|
bool tu_fifo_read (tu_fifo_t* f, void * buffer);
|
||||||
uint16_t tu_fifo_read_n (tu_fifo_t* f, void * p_buffer, uint16_t n);
|
uint16_t tu_fifo_read_n (tu_fifo_t* f, void * buffer, uint16_t n);
|
||||||
#ifdef TUP_MEM_CONST_ADDR
|
#ifdef TUP_MEM_CONST_ADDR
|
||||||
uint16_t tu_fifo_read_n_const_addr_full_words (tu_fifo_t* f, void * buffer, uint16_t n);
|
uint16_t tu_fifo_read_n_const_addr_full_words (tu_fifo_t* f, void * buffer, uint16_t n);
|
||||||
#endif
|
#endif
|
||||||
|
@ -137,7 +137,7 @@ bool tud_control_xfer(uint8_t rhport, tusb_control_request_t const* request, voi
|
|||||||
void usbd_control_reset(void);
|
void usbd_control_reset(void);
|
||||||
void usbd_control_set_request(tusb_control_request_t const* request);
|
void usbd_control_set_request(tusb_control_request_t const* request);
|
||||||
void usbd_control_set_complete_callback(usbd_control_xfer_cb_t fp);
|
void usbd_control_set_complete_callback(usbd_control_xfer_cb_t fp);
|
||||||
bool usbd_control_xfer_cb(uint8_t rhport, uint8_t ep_addr, xfer_result_t event, uint32_t xferred_bytes);
|
bool usbd_control_xfer_cb(uint8_t rhport, uint8_t ep_addr, xfer_result_t result, uint32_t xferred_bytes);
|
||||||
|
|
||||||
void usbd_control_reset(void) {
|
void usbd_control_reset(void) {
|
||||||
tu_varclr(&_ctrl_xfer);
|
tu_varclr(&_ctrl_xfer);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user