mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Remove redundant configASSERT in timers.c
This commit is contained in:
parent
f0f8e9e743
commit
c361e68a6b
4
timers.c
4
timers.c
|
@ -458,8 +458,6 @@
|
|||
|
||||
traceENTER_xTimerGenericCommandFromTask( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait );
|
||||
|
||||
configASSERT( xTimer );
|
||||
|
||||
/* Send a message to the timer service task to perform a particular action
|
||||
* on a particular timer definition. */
|
||||
if( ( xTimerQueue != NULL ) && ( xTimer != NULL ) )
|
||||
|
@ -509,8 +507,6 @@
|
|||
|
||||
traceENTER_xTimerGenericCommandFromISR( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait );
|
||||
|
||||
configASSERT( xTimer );
|
||||
|
||||
/* Send a message to the timer service task to perform a particular action
|
||||
* on a particular timer definition. */
|
||||
if( ( xTimerQueue != NULL ) && ( xTimer != NULL ) )
|
||||
|
|
Loading…
Reference in a new issue