summaryrefslogtreecommitdiff
path: root/src/osal
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-05-25 21:02:40 +0700
committerhathach <[email protected]>2021-05-25 21:02:40 +0700
commit954056da0ca4633d27f022858600164721963104 (patch)
tree4a88c75f028d5619a0b2695a6588b5444c700bf1 /src/osal
parentca8724ee08375e85c3a8fd15b5088d38c20c1ae8 (diff)
fix warnings cast function type for nrf, fix pico osal warning
add TODO for overflow in tusb_fifo.c
Diffstat (limited to 'src/osal')
-rw-r--r--src/osal/osal_pico.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/osal/osal_pico.h b/src/osal/osal_pico.h
index bae1217eb..1c3366e01 100644
--- a/src/osal/osal_pico.h
+++ b/src/osal/osal_pico.h
@@ -57,6 +57,7 @@ static inline osal_semaphore_t osal_semaphore_create(osal_semaphore_def_t* semde
static inline bool osal_semaphore_post(osal_semaphore_t sem_hdl, bool in_isr)
{
+ (void) in_isr;
sem_release(sem_hdl);
return true;
}
@@ -158,6 +159,7 @@ static inline bool osal_queue_send(osal_queue_t qhdl, void const * data, bool in
// however osal_queue_recieve may be. therefore my assumption is that
// the fifo mutex is not populated for queues used from an IRQ context
//assert(!qhdl->ff.mutex);
+ (void) in_isr;
_osal_q_lock(qhdl);
bool success = tu_fifo_write(&qhdl->ff, data);