We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aabb56c commit 1c6c9a3Copy full SHA for 1c6c9a3
ports/nrf/common-hal/audiobusio/I2SOut.c
@@ -221,6 +221,8 @@ void common_hal_audiobusio_i2sout_deinit(audiobusio_i2sout_obj_t* self) {
221
if (common_hal_audiobusio_i2sout_deinited(self)) {
222
return;
223
}
224
+ NRF_I2S->TASKS_STOP = 1;
225
+ NRF_I2S->ENABLE = I2S_ENABLE_ENABLE_Disabled;
226
reset_pin_number(self->bit_clock_pin_number);
227
self->bit_clock_pin_number = 0xff;
228
reset_pin_number(self->word_select_pin_number);
0 commit comments