User Activity

Hi,In my program (running on STM32F446RE, with 512 KB flash and 128 KB SRAM) I defined two big arrays:int main(void){ /* USER CODE BEGIN 1 */ int16_t data_in[64000]; int16_t audio_buffer[16000];The code can run normally when the data_in array is not ...
Hi,I have setup STM32F446 MCU such that, when pressing the user blue button, it will trigger an external interrupt. Inside the interrupt routine, it contains the I2S receive function:void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin){ int16_t audio_buff...
Hi,I am trying to interface an I2S MEMS microphone (SPH0645) with the STM32F446RE MCU for keyword spotting application. The mic produces PCM signal. Unfortunately, I have no idea where to start on receiving and processing the data from this MEMS mic...