diff options
| author | hathach <[email protected]> | 2013-01-30 17:53:37 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-01-30 17:53:37 +0700 |
| commit | c1bf187dad2b81e15ac810aa756a68f10541a47f (patch) | |
| tree | 02e63b3971385ef1f019de94a560c886b9c24e52 /tinyusb/osal/osal.h | |
| parent | 9c9fa182d40587a44d525de84d1a36933c8556e6 (diff) | |
add osal queue service & its test code
- create, send
Diffstat (limited to 'tinyusb/osal/osal.h')
| -rw-r--r-- | tinyusb/osal/osal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/osal/osal.h b/tinyusb/osal/osal.h index b97f049e6..5552da4c6 100644 --- a/tinyusb/osal/osal.h +++ b/tinyusb/osal/osal.h @@ -86,7 +86,7 @@ tusb_error_t osal_semaphore_post(osal_semaphore_handle_t const sem_hdl); //------------- Queue -------------// typedef uint32_t osal_queue_t; typedef void* osal_queue_handle_t; -osal_queue_handle_t osal_queue_create(osal_queue_t *queue, uint8_t *buffer); +osal_queue_handle_t osal_queue_create(osal_queue_t *queue); #endif |
