Posted on December 18, 2015 at 12:25I am trying to communicate with the UART peripheral using DMA for both RX and TX. I am using the HAL library that is supplied by ST (Generated with STCubeMX).I am handling a UART channel with 1.5MBaud - so in orde...
Posted on July 17, 2015 at 06:00HI, I am using IDLE Flag to check the IDLE Bus condition in my UART Transmit routine. void serialOut(uint8_t Channel,uint8_t *data,uint8_t len) { uint8_t is_Rx_line_Idle=0; is_Rx_line_Idle = __HAL_UART_GET_F...
Posted on June 17, 2015 at 14:46Hi,I am using STM32F407 uc with latest HAL lib. for PWM. In th elatest lib. there is no function provided to update the Duty cycle, reset the counter and auto reload like old driver TIM_SetCounter( TIM11, 0 );...
Posted on May 25, 2015 at 10:54
I am using STM32F407 USART HAL driver. I want to receive data one by one using theHAL_UART_Receive_IT()which sets up the device to run an interrupt function when data is received.
Problem is that you have to spe...
Posted on June 03, 2015 at 10:34Hi Heisenberg,I am trying to transmit the data using HAL_UART_Transmit_IT(&huart1, (uint8_t*)aTxEndMessage, len);but if i define aTxEndMessage buffer locally, I am getting garbage data. but when i define it Globally i...