You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In locodeck.c, the algoSemaphore is created as a binary semaphore, but is should probably be changed to a mutex instead. Mutexes provide task priority elevation (as opposed to binary semaphores) that we want in this case since the algoSemaphore is protecting data from concurrent access.
The text was updated successfully, but these errors were encountered:
In locodeck.c, the algoSemaphore is created as a binary semaphore, but is should probably be changed to a mutex instead. Mutexes provide task priority elevation (as opposed to binary semaphores) that we want in this case since the algoSemaphore is protecting data from concurrent access.
The text was updated successfully, but these errors were encountered: