CyberSamurai0 / P2P-Transmitter

MIT License
0 stars 1 forks source link

Read Incoming Data from RX_PIN #14

Open CyberSamurai0 opened 22 hours ago

CyberSamurai0 commented 22 hours ago
#define RX_PIN 1

Design a process to read incoming data from the receiver (Rx) pin and reconstruct it into the Packet struct.

The UART start and stop bits do not need to be included in reconstruction. The parity bit should be processed upon reception and should not be stored. All remaining data (headers?, Packet body) should be encoded into the Byte struct.

CyberSamurai0 commented 22 hours ago

Use this specification for the time being: image