protected virtual void PopulateTime() { if (ParentOpCodeWrapper.Setup.Configuration.TimerRunEnabled) { MicroXTime time = new MicroXTime(); time.Set(ParentOpCodeWrapper.Setup.Configuration.TimerStart); OutReport.InsertBlock(time.GetBytes()); } }
private void populateBank1() { byte[] contactBytes = ContactsInBytes; if (contactBytes.Length > MAX_BANK0_SIZE) { byte[] bank1 = new byte[contactBytes.Length - MAX_BANK0_SIZE]; Array.Copy(contactBytes, MAX_BANK0_SIZE + 1, bank1, 0, bank1.Length); OutReport.InsertBlock(bank1); } }
private void populateBank0() { byte[] contactBytes = ContactsInBytes; OutReport.InsertBlock(contactBytes); }
protected void PopulateData() { OutReport.InsertBlock(FWIterator.Current.Data); }