fix rare gurumeditation if we are unlucky and some ISR code is in serial flash

This commit is contained in:
geeksville
2020-05-14 12:46:29 -07:00
parent a0b43b9a95
commit 140e29840a
2 changed files with 7 additions and 8 deletions

View File

@@ -28,13 +28,7 @@ void NotifiedWorkerThread::notify(uint32_t v, eNotifyAction action)
xTaskNotify(taskHandle, v, action);
}
/**
* Notify from an ISR
*/
void NotifiedWorkerThread::notifyFromISR(BaseType_t *highPriWoken, uint32_t v, eNotifyAction action)
{
xTaskNotifyFromISR(taskHandle, v, action, highPriWoken);
}
void NotifiedWorkerThread::block()
{