??? 02/17/07 07:40 Read: times |
#133168 - Masking Responding to: ???'s previous message |
In the last piece of code you posted, I could not see any evidence of masking. { if (my_byte[i]==0x1A) //have we found a start? Should be something like: { if ( (my_byte[i] & 0x1f) == 0x1A) //have we found a start? Also can you format your code correctly - it is hard to read. |