User Activity

Hello!I work on 10KHz dual PWM (CH, CHN) generation with dead time implemented.In error handle I want to stop the timer, and now I do it like this:if(HAL_TIM_PWM_Stop(&htim8, TIM_CHANNEL_2) != HAL_OK) { //Error_Handler(); } //Stop channel xN if...
Hello!I have found a lot of examples about simple ADC reads, with:-single channel single conversion-single channel continuous conversion-multi channel single conversion-multi channel continuous conversionAnd these with polling, interrupt and DMA.I ne...
Hello!I use SPI DMA (NSS always down) communication between 2pcs H743ZI.Everything work fine, till I don't change SPI speed to higher frequency (6MBits/s)It seems like, the DMA interrupts don't let enough time for While() to run.EXAMPLE:... uint8_t p...