* Called via task queue */
| 142 | * Called via task queue |
| 143 | */ |
| 144 | void HardwareSerial::staticOnStatusChange(void* param) |
| 145 | { |
| 146 | auto serial = static_cast<HardwareSerial*>(param); |
| 147 | if(serial != nullptr) { |
| 148 | serial->invokeCallbacks(); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | /* |
| 153 | * Called from uart interrupt handler |
nothing calls this directly
no test coverage detected