0

I want to know how many bytes are transmitted in the second with some specicifc baud rate. IE, for example, I have a baudrate=9600, so I can send

9600 / 8 = 1200

bytes per second.

So, how much uart bytes can I send with 8bit + 1 stop bit + 1 parity bit? Does it equal to

9600 / 10 = 960

?

Alex Antonov
  • 14,134
  • 7
  • 65
  • 142

1 Answers1

1

You forgot the start bit, it is 9600 / (1 + 8 + 1 + 1) = 872.

Hans Passant
  • 922,412
  • 146
  • 1,693
  • 2,536