Byte Stuffing

Description

When transmitting bits, too many of one value or another can affect the baseline. Byte Stuffing basically adds a 0 after five 1s.

Example

Lecture 3 Slide 19

Homework Solution Question #4

1111 1110 becomes 1111 10110 (Don't worry that it extended past a byte)

Continue Reading