From 08bdb42c78dd84e6b84dabce3aa26193d4711744 Mon Sep 17 00:00:00 2001 From: Matthieu Cattin Date: Tue, 22 May 2012 10:47:42 +0200 Subject: [PATCH] test23: work in progress... --- test/fmcadc100m14b4cha/python/test23.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/fmcadc100m14b4cha/python/test23.py b/test/fmcadc100m14b4cha/python/test23.py index f633890..905cccb 100755 --- a/test/fmcadc100m14b4cha/python/test23.py +++ b/test/fmcadc100m14b4cha/python/test23.py @@ -28,7 +28,7 @@ from fmc_adc import * """ -test23: Test +test23: Test FMC EEPROM library. Note: Requires test00.py to run first to load the firmware! """ @@ -94,7 +94,9 @@ def main (default_directory='.'): for line in iter(f_calibr): calibr_data.append(int(line, 16)) f_calibr.close() - + print "Raw calibration data:" + for data in calibr_data: + print "0x%04X" % (data) return -- 2.18.1