To replicate: ```python from microbit import * audio.play(audio.SoundEffect()) display.show("A") ``` ```python from microbit import * audio.play(Sound.HAPPY) display.show("A") ``` In both cases the sound will play, but it will get stuck playing the last tone and play that indefinitely, never reaching the line to display "A". Looks like it was introduced by this CODAL commit: https://github.com/lancaster-university/codal-microbit-v2/commit/31095d5d9f3c1ffc524c2777173d10fe7ee9ab25 More info in: - https://github.com/lancaster-university/codal-microbit-v2/issues/228