Check out my first novel, midnight's simulacra!

FreeRTOS: Revision history

From dankwiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

19 May 2024

  • curprev 18:5218:52, 19 May 2024Dank talk contribs 643 bytes +79 →‎Mutexes
  • curprev 18:4618:46, 19 May 2024Dank talk contribs 564 bytes +564 Created page with "FreeRTOS is an open source real time operating system commonly used in embedded development. ==Task notifications== Rather than using semaphores for wakeup, task notifications are faster and less heavyweight. ==Mutexes== FreeRTOS mutexes are a special class of semaphores. Note that they cannot be taken in interrupt handlers (i.e. <tt>xSemaphoreTakeFromISR()</tt> should only be used on semaphores created using <tt>xSemaphoreCreateBinary()</tt>). Using <tt>xSemaphoreTake..."