From a2d428d26ffc4b163e003c696425ae91fd3ca900 Mon Sep 17 00:00:00 2001 From: Simon Kueppers Date: Wed, 14 Dec 2022 20:36:25 +0100 Subject: [PATCH] Fixed missing refactored name --- stm32/aioc-fw/Src/usb_audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stm32/aioc-fw/Src/usb_audio.c b/stm32/aioc-fw/Src/usb_audio.c index 3562d80..17593d7 100644 --- a/stm32/aioc-fw/Src/usb_audio.c +++ b/stm32/aioc-fw/Src/usb_audio.c @@ -382,7 +382,7 @@ bool tud_audio_rx_done_post_read_cb(uint8_t rhport, uint16_t n_bytes_received, u if (speakerState == STATE_START) { if (count >= SPEAKER_BUFFERLVL_TARGET) { /* Wait until whe are at buffer target fill level, then start DAC output */ - spkState = STATE_RUN; + speakerState = STATE_RUN; NVIC_EnableIRQ(TIM3_IRQn); }