File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 462
462
}
463
463
else
464
464
{
465
- pxTimer -> ucStatus &= ( (uint8_t ) ~tmrSTATUS_IS_AUTORELOAD );
465
+ pxTimer -> ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_AUTORELOAD );
466
466
}
467
467
}
468
468
taskEXIT_CRITICAL ();
550
550
}
551
551
else
552
552
{
553
- pxTimer -> ucStatus &= ( (uint8_t ) ~tmrSTATUS_IS_ACTIVE );
553
+ pxTimer -> ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE );
554
554
}
555
555
556
556
/* Call the timer callback. */
829
829
}
830
830
else
831
831
{
832
- pxTimer -> ucStatus &= ( (uint8_t ) ~tmrSTATUS_IS_ACTIVE );
832
+ pxTimer -> ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE );
833
833
}
834
834
835
835
/* Call the timer callback. */
846
846
case tmrCOMMAND_STOP :
847
847
case tmrCOMMAND_STOP_FROM_ISR :
848
848
/* The timer has already been removed from the active list. */
849
- pxTimer -> ucStatus &= ( (uint8_t ) ~tmrSTATUS_IS_ACTIVE );
849
+ pxTimer -> ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE );
850
850
break ;
851
851
852
852
case tmrCOMMAND_CHANGE_PERIOD :
876
876
}
877
877
else
878
878
{
879
- pxTimer -> ucStatus &= ( (uint8_t ) ~tmrSTATUS_IS_ACTIVE );
879
+ pxTimer -> ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE );
880
880
}
881
881
}
882
882
#else /* if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) */
885
885
* could not have been dynamically allocated. So there is
886
886
* no need to free the memory - just mark the timer as
887
887
* "not active". */
888
- pxTimer -> ucStatus &= ( (uint8_t ) ~tmrSTATUS_IS_ACTIVE );
888
+ pxTimer -> ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE );
889
889
}
890
890
#endif /* configSUPPORT_DYNAMIC_ALLOCATION */
891
891
break ;
You can’t perform that action at this time.
0 commit comments