User Activity

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 19, 2015 at 14:30HI Does any body has example code for SPI based LCD 240x128 (UC1608 controller ) interface with STM32F4?Vinayak
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...