From: David Schleef Date: Mon, 30 Jul 2001 20:38:17 +0000 (+0000) Subject: Change email address, add Comedi version and device name X-Git-Tag: r0_7_17~49 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f7261b85769234367f5a150e416b7bed2af20421;p=comedilib.git Change email address, add Comedi version and device name --- diff --git a/comedi_calibrate/comedi_calibrate.c b/comedi_calibrate/comedi_calibrate.c index 95de381..23e663e 100644 --- a/comedi_calibrate/comedi_calibrate.c +++ b/comedi_calibrate/comedi_calibrate.c @@ -547,9 +547,13 @@ void cal_ni_mio_E(void) int n_ranges; reset_caldacs(); - printf("please send this output to \n"); + printf("Please send this output to \n"); printf("$Id$\n"); - printf("%s\n",comedi_get_board_name(dev)); + printf("Device name: %s\n",comedi_get_board_name(dev)); + printf("Comedi version: %d.%d.%d\n", + (comedi_get_version_code(dev)>>16)&0xff, + (comedi_get_version_code(dev)>>8)&0xff, + (comedi_get_version_code(dev))&0xff); n_ranges=comedi_get_n_ranges(dev,ad_subdev,0);