ARINC429.cs 884 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Uestc.Auto6.Dso.ComModel;
  8. using Uestc.Auto6.Dso.Core;
  9. using Uestc.Auto6.Dso.Core.Decode;
  10. using Uni_Trend.MSO7000X.Common.Helper;
  11. namespace Uestc.Auto6.Dso.Protocol.ARINC429
  12. {
  13. internal class ARINC429 : DecodeView
  14. {
  15. public override IProtocolView ProtocolView => new ARINC429SetControl();
  16. public override ITriggerSerialView TriggerSerialView => new ARINC429TriggerSetControl();
  17. public override SerialProtocolType ProtocolType => SerialProtocolType.ARINC429;
  18. public override void DrawDecodeInfo(Graphics graphics, Rectangle rectangle, IProtocolPrsnt prsnt, Color ForeColor, Font font)
  19. {
  20. if (prsnt is ARINC429DecodePrsnt decodePrsnt)
  21. {
  22. }
  23. }
  24. }
  25. }