BaselineCalibration.cs 343 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Uestc.Auto6.Dso.Hardware.Driver;
  7. namespace Uestc.Auto6.Dso.Core
  8. {
  9. public class BaselineCalibration
  10. {
  11. public static Boolean Run()
  12. {
  13. return Hd.CaliAnalogBaseline();
  14. }
  15. }
  16. }