Posted on May 27, 2016 at 14:57Is it possible to use baud rate divisor less than 1? i.e. 1/16 - USART_BRR = 0x01I did not find any information about it in STM32F4 RFM. #uart-usart-baud
Posted on May 31, 2016 at 13:12After additional deep study RFM and device datasheet, I figured out next items:The divisor in fixed point interpretation can't be less than 1. It can be seen from maximum baud rates for UART in device datasheet.
Posted on May 27, 2016 at 15:27I wrote wrong number it have to be 1/16. Oversampling8 = 0But anyway. If my clock is. i.e. 10 MHz, then can I apply divisor 1/16? - to achieve 10mbps?I.e. is the closer to HW equation is fclk/((uint16_t)divisor)? ...