- Uart.syncBit = 0xFFFF; // not set
- // look for 00xx1111 (the start bit)
- if ((Uart.twoBits & 0x6780) == 0x0780) Uart.syncBit = 7;
- else if ((Uart.twoBits & 0x33C0) == 0x03C0) Uart.syncBit = 6;
- else if ((Uart.twoBits & 0x19E0) == 0x01E0) Uart.syncBit = 5;
- else if ((Uart.twoBits & 0x0CF0) == 0x00F0) Uart.syncBit = 4;
- else if ((Uart.twoBits & 0x0678) == 0x0078) Uart.syncBit = 3;
- else if ((Uart.twoBits & 0x033C) == 0x003C) Uart.syncBit = 2;
- else if ((Uart.twoBits & 0x019E) == 0x001E) Uart.syncBit = 1;
- else if ((Uart.twoBits & 0x00CF) == 0x000F) Uart.syncBit = 0;
- if (Uart.syncBit != 0xFFFF) {
+ Uart.syncBit = 0xFFFF; // not set
+ // we look for a ...1111111100x11111xxxxxx pattern (the start bit)
+ if ((Uart.twoBits & 0xDF00) == 0x1F00) Uart.syncBit = 8; // mask is 11x11111 xxxxxxxx,
+ // check for 00x11111 xxxxxxxx
+ else if ((Uart.twoBits & 0xEF80) == 0x8F80) Uart.syncBit = 7; // both masks shifted right one bit, left padded with '1'
+ else if ((Uart.twoBits & 0xF7C0) == 0xC7C0) Uart.syncBit = 6; // ...
+ else if ((Uart.twoBits & 0xFBE0) == 0xE3E0) Uart.syncBit = 5;
+ else if ((Uart.twoBits & 0xFDF0) == 0xF1F0) Uart.syncBit = 4;
+ else if ((Uart.twoBits & 0xFEF8) == 0xF8F8) Uart.syncBit = 3;
+ else if ((Uart.twoBits & 0xFF7C) == 0xFC7C) Uart.syncBit = 2;
+ else if ((Uart.twoBits & 0xFFBE) == 0xFE3E) Uart.syncBit = 1;
+ if (Uart.syncBit != 0xFFFF) { // found a sync bit