Timer event callback (called when VSI Timer overflow occurs). If not in continuous mode, disables the stream. Returns: None
()
| 286 | |
| 287 | |
| 288 | def timerEvent(): |
| 289 | """ |
| 290 | Timer event callback (called when VSI Timer overflow occurs). |
| 291 | |
| 292 | If not in continuous mode, disables the stream. |
| 293 | Returns: |
| 294 | None |
| 295 | """ |
| 296 | if (CONTROL & CONTROL_CONTINUOUS_Msk) == 0: |
| 297 | wrCONTROL(CONTROL & ~CONTROL_ENABLE_Msk) |
| 298 | |
| 299 | |
| 300 | def rdDataDMA(size): |
nothing calls this directly
no test coverage detected