IBIN16 is sending % followed by 16 bytes of data. Not just 16-bits. This produces an
ASCII 0 or 1 for each bit in the word.
Try something like;On the receiving end, try something like;Code:serout2 TRANSMISSION,16468,[$55,$55,$55,$aa,Manchesterword.LowByte,Manchesterword.HighByte]This way SERIN2 on the receiving end simply ignores your $55 and waits for $aa before theCode:SERIN2 RECEPTION, 16468, [WAIT($aa),ManchesterWord.LowByte,ManchesterWord.HighByte]
16-bit data packet.
Bookmarks