From: Frank Mori Hess Date: Wed, 1 Jan 2003 22:46:35 +0000 (+0000) Subject: inactive support for reading calibration voltage from eeprom on 611x X-Git-Tag: r0_7_21~273 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=50ea72bc51aa55f06b0641fd2e6537ded0101343;p=comedilib.git inactive support for reading calibration voltage from eeprom on 611x (not sure if ni_get_reference() is correct) --- diff --git a/comedi_calibrate/ni.c b/comedi_calibrate/ni.c index 0f40057..586da8e 100644 --- a/comedi_calibrate/ni.c +++ b/comedi_calibrate/ni.c @@ -69,6 +69,8 @@ int cal_ni_pci_6032e(calibration_setup_t *setup); int cal_ni_daqcard_ai_16e_4(calibration_setup_t *setup); int cal_ni_pci_611x(calibration_setup_t *setup); +double ni_get_reference( calibration_setup_t *setup, int lsb_loc,int msb_loc); + static struct board_struct boards[]={ { "at-mio-16e-2", STATUS_DONE, cal_ni_at_mio_16e_2, ni_setup_observables }, { "DAQCard-ai-16xe-50", STATUS_DONE, cal_ni_daqcard_ai_16xe_50, ni_setup_observables }, @@ -346,7 +348,8 @@ void ni_setup_observables_611x( calibration_setup_t *setup ) range = 2; - voltage_reference = 5.000; +/* voltage_reference = ni_get_reference( setup, 468, 469 ); */ + voltage_reference = 5.0; cal_gain_reg_bits = cal_gain_register_bits_611x( &voltage_reference ); memset(&tmpl,0,sizeof(tmpl)); @@ -819,15 +822,14 @@ int cal_ni_pci_611x( calibration_setup_t *setup ) double ni_get_reference( calibration_setup_t *setup, int lsb_loc,int msb_loc) { int lsb,msb; - int uv; + int16_t uv; double ref; lsb=read_eeprom( setup, lsb_loc); msb=read_eeprom( setup, msb_loc); - printf("lsb=%d msb=%d\n",read_eeprom( setup, 425),read_eeprom( setup, 426)); + printf("lsb=%d msb=%d\n", lsb, msb); - uv=lsb | (msb<<8); - if(uv>=0x8000)uv-=0x10000; + uv = ( lsb & 0xff ) | ( ( msb << 8 ) & 0xff00 ); ref=5.000+1.0e-6*uv; printf("ref=%g\n",ref);