User Activity

Hello, I'm doing a project for speech recognition. I have a buffer of 512 values and I want to test every state of the ASR I'm implementing. I am using Keil ARM as IDE and I have tried to use ​the logic analyzer to plot my buffer but I can only plot ...
I have this code: //SystemCoreClock=64 MHZ LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_TIM6);  LL_TIM_SetPrescaler(TIM6, __LL_TIM_CALC_PSC(SystemCoreClock, 1000)); /* 1 tick /1 ms */LL_TIM_EnableCounter(TIM6);time0 = LL_TIM_GetCounter(TIM6);LL_mDela...