Changes

Jump to navigation Jump to search
1,552 bytes added ,  14:59, 17 July 2007
no edit summary
Line 28: Line 28:  
* Full reset: This resets all chips on the board (except for the FPGA; that should reset only during a power-up) together.  This will contain no data.
 
* Full reset: This resets all chips on the board (except for the FPGA; that should reset only during a power-up) together.  This will contain no data.
 
* Selective reset: This will have flags to reset the Ethernet chip, the ADC, the temperature sensor, and the DAC.  Combinations of flags allow a selective reset of any combination of the four chips.  This will contain four flags which can be packaged into a single byte.
 
* Selective reset: This will have flags to reset the Ethernet chip, the ADC, the temperature sensor, and the DAC.  Combinations of flags allow a selective reset of any combination of the four chips.  This will contain four flags which can be packaged into a single byte.
The first data byte will be an ASCII R: 0x52, 0101 0010.  For a full-reset-only design, all remaining bytes in the packet will be padding that the FPGA can ignore.  For a selective-reset design, the second data byte will contain the four flags, and all bytes after that will be padding.
+
The first data byte will be an ASCII '''R''': 0x52, 0101 0010.  For a full-reset-only design, all remaining bytes in the packet will be padding that the FPGA can ignore.  For a selective-reset design, the second data byte will contain the four flags, and all bytes after that will be padding.
    
==== "I" packet: initialization complete ====
 
==== "I" packet: initialization complete ====
   −
This is the acknowledgment packet sent from the FPGA to the PC to state that the reset cycle has been completed and the digital board is ready to resume regular operations.  At this point all settings on the digital board have returned to their defaults (likely to mean all DAC channels set to zero).  There is no data associated with this packet, so the only significant byte is the first byte, an ASCII I: 0x49, 0100 1001.
+
This is the acknowledgment packet sent from the FPGA to the PC to state that the reset cycle has been completed and the digital board is ready to resume regular operations.  At this point all settings on the digital board have returned to their defaults (likely to mean all DAC channels set to zero).  There is no data associated with this packet, so the only significant byte is the first byte, an ASCII '''I''': 0x49, 0100 1001.
    
=== The query cycle ===
 
=== The query cycle ===
Line 39: Line 39:     
==== "Q" packet: query ====
 
==== "Q" packet: query ====
 +
 +
This is the packet sent from the PC to the FPGA to request a status report.  This could be made selective (status of ADC only, status of temperature sensor only, or full status report).  However, as the size of an Ethernet packet is so large compared to the amount of data being requested, all data will be sent and the PC can use the data as it desires.  Thus there is no data attached to a query packet.  The first byte is an ASCII '''Q''': 0x51, 0101 0001.
 +
 +
==== "S" packet: status report ====
 +
 +
This is the packet sent from the FPGA to the PC to report on the current status of the board.  The first byte of the packet will be an ASCII '''S''': 0x53, 0101 0011.  After that will come the status data.
 +
* The first two bytes of data will be the temperature.  The temperature sensor returns 10 bits of data.  The first byte will contain six leading zeros, then the two MSB of data.  The second byte will contain the 8 LSB of data.  An alternate scheme would be to convert the 10-bit two's-complement data into 16-bit two's-complement data and return that in two bytes.
 +
* The next 16 bytes of data will be the ADC channels.  The ADC returns 8 channels of 12 bits each.  The first byte for each channel will have four leading zeros, then the 4 MSB of the data.  The second byte for each channel will contain the 8 LSB of the data.  The channels will be reported from channel zero to channel seven.  An alternate scheme would be to convert the 12-bit two's-complement data into 16-bit two's-complement data and return that in two bytes each.
461

edits

Navigation menu