hdma_tim1_ch1.XferCpltCallback = TransferCompleteCallback; IS NOT TRIGGERIING
I am transfering data array from an array to PWM register of TIM1.
int16_t sin_table[20]= { 0, 39, 77, 113, 147, 177, 202, 223, 238,247, 250, 247, 238, 223, 202, 177, 147, 113, 77, 39};
HAL_TIM_PWM_Start_DMA(&htim1, TIM_CHANNEL_1, (uint32_t *)sin_table, 20);
And i am trying to blink in complete transfer callback fuction as follows .
I am getting PWM signal as expected . but trigger the TransferCompleteCallback).
by using break poiint the DMA Inerupt Handler triggers but not trigger the callback i said .
whats the wrong am with please help me .
i am attaching the full code here
aNY BODY HELP ME
