mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-10 14:08:14 +00:00
Invert serial atmega bug correction
This commit is contained in:
parent
7d41017850
commit
41d579dc23
@ -974,7 +974,9 @@ void Serial_write( uint8_t byte )
|
|||||||
#ifdef INVERT_SERIAL
|
#ifdef INVERT_SERIAL
|
||||||
byte |= 1 ; // Start bit
|
byte |= 1 ; // Start bit
|
||||||
#endif
|
#endif
|
||||||
uint8_t next = (SerialControl.head + 2) & 0x7f ;
|
uint8_t next = SerialControl.head + 2;
|
||||||
|
if(next>TXBUFFER_SIZE)
|
||||||
|
next=0;
|
||||||
if ( next != SerialControl.tail )
|
if ( next != SerialControl.tail )
|
||||||
{
|
{
|
||||||
SerialControl.data[SerialControl.head] = byte ;
|
SerialControl.data[SerialControl.head] = byte ;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user