Comments on Bit-rate vs Baud-rate
Parent
Bit-rate vs Baud-rate
I am really confused how the terms bit-rate are baud-rate are used in electronics. I never bothered thinking about baud-rate being different than bit-rate before. But recently, one of my teachers told baud-rate being the maximum no. of changes in the bit that can occur during the data transfer.
I really want to visualize how they are different from each other.
Post
Baud rate is about the speed of bit slots in the channel or symbols. Bit rate is the rate at which actual data is transmitted.
Put another way, baud rate is what you see when you look at a scope trace of a communication signal. Bit rate is how fast data gets from one end to the other.
The bit rate can be both higher and lower than the baud rate due to encoding and packaging schemes. Modern high speed protocols do various fancy things to encode more than one bit of data into each symbol, so the bit rate is often higher than the baud rate.
However, for most "ordinary" protocols (UART, CAN, IIC, SPI for example), some of the bit slots are used to delimit and package the information, so the bit rate is lower than the baud rate.
Consider the common UART protocol of 115.2 kBaud, 8 data bits, no parity, and 1 stop bit. Each character requires 10 bit slots to send: 1 start bit, 8 actual data bits, and 1 stop bit. Since the baud rate is 115.2 k/s, each bit slot is 8.68 µs long. A whole character therefore takes 86.8 µs to transmit. A total of 8 payload bits are transported during that time, so the bit rate is (8 bits)/(86.8 µs) = 92.2 kBits/s.
@TonyStewart wrote:
Can you give an example where Baud Rate is higher than Bit Rate?
I did. See previous paragraph.
0 comment threads