Example #1
0
 public MessageAssembler(MessageFramer framer, int messageLength, bool[] initialFill)
     : this(framer, messageLength)
 {
     /* Pre-load the message with the sync pattern */
     for (int x = 0; x < initialFill.Length; x++)
     {
         Receive(initialFill[x]);
     }
 }
Example #2
0
 public MessageAssembler(MessageFramer framer, int messageLength)
 {
     mFramer  = framer;
     mMessage = new RadioLog.Common.SafeBitArray(messageLength);
 }