Changes between Initial Version and Version 1 of Release_Notes


Ignore:
Timestamp:
Nov 8, 2013, 10:17:53 AM (10 years ago)
Author:
Eric Hazen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Release_Notes

    v1 v1  
     1''''5 June 2007'''
     2
     3First "working" version which reads out waveforms.
     4To compile:
     5
     6{{{
     7   make clean; make
     8
     9}}}
     10To select a channel, initialize, and read out a waveforem with
     11automatic (random) trigger:
     12
     13{{{
     14   ./drift.exe
     15   drift> w 2 4          set channel number 4 (equals "Channel 1" on box)
     16   drift> i 15           initialize digitizer, threshold = bit 15
     17   drift> a              automatic capture of 1 waveform
     18   drift> t              readout trace to file ''trace.dat'
     19
     20}}}
     21You can then view the waveform using [http://www.gnuplot.info/ Gnuplot]
     22Simply start gnuplot and enter the command ''''plot "trace.dat"'''.
     23
     24For triggered operation, enter the command ''''i <bit>''' where <bit> is
     25a bit number from 1-12.  The trigger threshold will be 2**<bit>.
     26For example, if <bit> is 9, then the trigger threshold will be 512.
     27
     28The command sequence for triggered operation:
     29
     30{{{
     31  drift> i 9              for ezample
     32  drift> n                start acquisition, wait for trigger
     33  drift> t                read trace starting 150 samples before trigger point
     34
     35}}}
     36
     37