Example #1
0
 private static extern INEMO2_DeviceError INEMO2_GetOutput(INEMO2_DeviceHandle hHandle, ref INEMO2_Output output);
Example #2
0
 private static extern INEMO2_DeviceError INEMO2_SetOutput(INEMO2_DeviceHandle hHandle, ref INEMO2_Output output);
Example #3
0
 public INEMO2_DeviceError GetOutput(ref INEMO2_Output OutMode)
 {
     return INEMO2_GetOutput(this.m_DeviceHandle, ref OutMode);
 }
Example #4
0
 public frmSensorSettings(INEMO2_Device comm)
 {
     this.InitializeComponent();
     this.sdk2comm = comm;
     foreach (TabPage page in this.tabControl1.TabPages)
     {
         foreach (Control control in page.Controls)
         {
             if (control is ComboBox)
             {
                 ((ComboBox) control).SelectedIndex = 0;
             }
         }
     }
     this.cmbACC_HPF_ODR.SelectedIndex = 0;
     this.SettingsChanged_Out = false;
     this.SettingsChanged_Acc = false;
     this.SettingsChanged_Mag = false;
     this.SettingsChanged_Gyr = false;
     this.SettingsChanged_Pres = false;
     this.SettingsChanged_Temp = false;
     this.getRegOutPut = new INEMO2_Output();
 }