namespace DTS.Common.Interface.DASFactory.Download { public interface IUARTEventInfo { /// /// From which event do we want to download data? /// ushort EventNumber { get; set; } /// /// Is data present? /// bool DataPresent { get; set; } /// /// Has data already been downloaded? /// bool DataDownloaded { get; set; } /// /// How much data is there? /// ulong TotalByteCount { get; set; } /// /// Where in the data did the trigger occur? /// ulong TriggerByteCount { get; set; } /// /// Where are the faults? /// ulong FaultByteCount { get; set; } /// /// When did the UART stream start? /// ulong StartTimestamp { get; set; } /// /// When did the UART stream end? /// ulong EndTimestamp { get; set; } /// /// What was the baud rate during UART recording? /// uint BaudRate { get; set; } } }