SERIN2 – SEROUT2 and Manchester mistake.


Results 1 to 9 of 9

Threaded View

  1. #7
    Join Date
    Jul 2003
    Posts
    2,405

    Default

    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;
    Code:
    serout2 TRANSMISSION,16468,[$55,$55,$55,$aa,Manchesterword.LowByte,Manchesterword.HighByte]
    On the receiving end, try something like;
    Code:
    SERIN2 RECEPTION, 16468, [WAIT($aa),ManchesterWord.LowByte,ManchesterWord.HighByte]
    This way SERIN2 on the receiving end simply ignores your $55 and waits for $aa before the
    16-bit data packet.
    Last edited by Bruce; - 4th September 2007 at 16:50.
    Regards,

    -Bruce
    tech at rentron.com
    http://www.rentron.com

Similar Threads

  1. Reading in Manchester code
    By brid0030 in forum Code Examples
    Replies: 0
    Last Post: - 10th March 2009, 21:55

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts