~ruther/uni-mam-arm

e148ef785c328610b9400a6d6edaf5df7c9d4af0 — Rutherther 3 months ago cb36fc0
feat(arm04): rounding
1 files changed, 8 insertions(+), 3 deletions(-)

M arm04/src/uart.c
M arm04/src/uart.c => arm04/src/uart.c +8 -3
@@ 16,9 16,14 @@ void usart_configure_speed(uart_t *uart, uint32_t clock_freq,
  uint32_t mantissa = temp / 16;
  uint32_t fraction = temp % 16;

  if (fraction == 15 && ((temp + 8) % 16) == 0) {
    mantissa++;
    fraction = 0;
  // rounding
  if (((temp + 8) % 16) == 0) {
    if (fraction == 15) {
      mantissa++;
      fraction = 0;
    } else {
      fraction++;
    }
  }

  uart->periph->BRR = (mantissa << USART_BRR_DIV_Mantissa_Pos) | (fraction << USART_BRR_DIV_Fraction_Pos);

Do not follow this link