mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 13:31:58 -04:00
Corrected a couple of comments.
This commit is contained in:
parent
e170cdef52
commit
2dc8e16e68
|
@ -454,7 +454,7 @@ typedef xQueueHandle xSemaphoreHandle;
|
||||||
* <pre>
|
* <pre>
|
||||||
xSemaphoreGiveFromISR(
|
xSemaphoreGiveFromISR(
|
||||||
xSemaphoreHandle xSemaphore,
|
xSemaphoreHandle xSemaphore,
|
||||||
portBASE_TYPE *pxHigherPriorityTaskWoken
|
signed portBASE_TYPE *pxHigherPriorityTaskWoken
|
||||||
)</pre>
|
)</pre>
|
||||||
*
|
*
|
||||||
* <i>Macro</i> to release a semaphore. The semaphore must have previously been
|
* <i>Macro</i> to release a semaphore. The semaphore must have previously been
|
||||||
|
@ -509,7 +509,7 @@ typedef xQueueHandle xSemaphoreHandle;
|
||||||
void vTimerISR( void * pvParameters )
|
void vTimerISR( void * pvParameters )
|
||||||
{
|
{
|
||||||
static unsigned char ucLocalTickCount = 0;
|
static unsigned char ucLocalTickCount = 0;
|
||||||
static portBASE_TYPE xHigherPriorityTaskWoken;
|
static signed portBASE_TYPE xHigherPriorityTaskWoken;
|
||||||
|
|
||||||
// A timer tick has occurred.
|
// A timer tick has occurred.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue