File tree 1 file changed +1
-8
lines changed 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -184,14 +184,7 @@ void vListInsert( List_t * const pxList,
184
184
* 4) Using a queue or semaphore before it has been initialised or
185
185
* before the scheduler has been started (are interrupts firing
186
186
* before vTaskStartScheduler() has been called?).
187
- * 5) Attempting to 'take' binary semaphores created using
188
- * `xSemaphoreCreateBinary()` or `xSemaphoreCreateBinaryStatic()`
189
- * APIs, before 'giving' them. Binary semaphores created using
190
- * `xSemaphoreCreateBinary()` or `xSemaphoreCreateBinaryStatic()`,
191
- * are created in a state such that the semaphore must first be
192
- * 'given' using xSemaphoreGive() API before it can be 'taken' using
193
- * xSemaphoreTake() API.
194
- * 6) If the FreeRTOS port supports interrupt nesting then ensure that
187
+ * 5) If the FreeRTOS port supports interrupt nesting then ensure that
195
188
* the priority of the tick interrupt is at or below
196
189
* configMAX_SYSCALL_INTERRUPT_PRIORITY.
197
190
**********************************************************************/
You can’t perform that action at this time.
0 commit comments