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
Problem:
The log mutex and the binary semaphore are conflicting for an unknown reason (need more investigation), which causes the context switching to obc_interface task to get stuck in an inner OS routine (configASSERT( pxTCB == pxCurrentTCB );).
Temporary solution:
Remove the log mutex and keep only the binary mutex (used for interrupt handler synchronization). This approach leads to log prints with errors due to context switching.
The text was updated successfully, but these errors were encountered:
Problem:
The log mutex and the binary semaphore are conflicting for an unknown reason (need more investigation), which causes the context switching to obc_interface task to get stuck in an inner OS routine (configASSERT( pxTCB == pxCurrentTCB );).
Temporary solution:
Remove the log mutex and keep only the binary mutex (used for interrupt handler synchronization). This approach leads to log prints with errors due to context switching.
The text was updated successfully, but these errors were encountered: