ledongthuc / CustomSoftwareSerial

Alternative SoftwareSerial in Arduino. CustomSoftwareSerial library allow to configure and custom Parity Bit and Stop Bit.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

To delay even parity bit without

lalalaru opened this issue · comments

507 writeParityBits(numberOfBits1);
508 tunedDelay(_tx_delay);
↓↓↓↓↓↓↓↓↓↓
507 writeParityBits(numberOfBits1);
508 if(this->_parityBit != NONE) {
509 tunedDelay(_tx_delay);
510 }