示例#1
0
 public SynthHMC704LP4E(Device device)
 {
     try
     {
         m_hmc = new HMCMode(device);
     }
     catch (Exception err)
     {
         throw (new SystemException(err.Message));
     }
 }
示例#2
0
 public SynthHMC704LP4E(Device device, HMC704_CHIP_NUMBER chipNum)
 {
     try
     {
         m_hmc = new HMCMode(device);
         ConfigurePins(chipNum);
     }
     catch (Exception err)
     {
         throw (new SystemException(err.Message));
     }
 }