Resolved! Large array causing hard fault when debugging
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 ...