Open
Description
Tested with v2.1.2 and the lates recording&playback branch.
I've managed to reduce the issue it to this exampe. When connected to serial Ctrl+C does not stop the programme.
from microbit import *
def radio_received_msgs():
msg_length = 0
while True:
if msg_length:
yield audio.AudioFrame()
audio.play(radio_received_msgs())