Example #1
0
        protected override void HandleReadCompleted()
        {
            base.HandleReadCompleted();

            string data = RawByteUtility.ConvertDataToText(iBytes, true, ref iCurrentAddress);

            iOutput.Append(data);
        }
Example #2
0
        protected override void HandleReadBytes(byte[] aData)
        {
            foreach (byte b in aData)
            {
                iBytes.Enqueue(b);
            }

            string data = RawByteUtility.ConvertDataToText(iBytes, false, ref iCurrentAddress);

            iOutput.Append(data);
        }
 public StackOutputEntry(uint aAddress, uint aData)
 {
     iAddress      = aAddress;
     iData         = aData;
     iDataAsString = RawByteUtility.CreateCharacterisedData(aData);
 }