MCPcopy Create free account
hub / github.com/ARM-software/AVH / timerEvent

Function timerEvent

interface/vstream/python/vsi_audio.py:288–297  ·  view source on GitHub ↗

Timer event callback (called when VSI Timer overflow occurs). If not in continuous mode, disables the stream. Returns: None

()

Source from the content-addressed store, hash-verified

286
287
288def 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
300def rdDataDMA(size):

Callers

nothing calls this directly

Calls 1

wrCONTROLFunction · 0.70

Tested by

no test coverage detected