Hi all,I am trying to use I2C DMA as Master and UART DMAMy code isvoid HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim){
if (c == 1) {
HAL_UART_Transmit_DMA(&huart2, (uint8_t *)b, 8);
} else {
/* I2C Transmit code */
}
c = 1 - c;...
Hi, allI am trying to receive packet from uart3 and send them to uart2but the results of my trials are:transmit occurs every main cpu clocktransmit occur just oncewhich I thought was:receive packet from uart3 when packet arrived, independentlytransmi...