Wiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware [23 Feb 2018 23:37] – fixed some layout issues Jeff Watsonresources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware [01 Mar 2018 03:38] – added links to diagrams Jeff Watson
Line 20: Line 20:
  
 <WRAP center round box 100%> <WRAP center round box 100%>
-{{:resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_flow.png?nolink|}}+{{:resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_flow.png?direct|}}
 EV-HT-200CDAQ1 Firmware Flowchart EV-HT-200CDAQ1 Firmware Flowchart
 </WRAP> </WRAP>
 \\ \\
 <WRAP center round box 100%> <WRAP center round box 100%>
-{{:resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_parser.png?nolink|}}+{{:resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_parser.png?direct|}}
 Parser Routine Flow Parser Routine Flow
 </WRAP> </WRAP>
Line 39: Line 39:
 This section has tables showing the pins, peripherals and interrupts used in the project.  All other GPIO pins, timers and peripherals can be used by the end user’s application.  This section has tables showing the pins, peripherals and interrupts used in the project.  All other GPIO pins, timers and peripherals can be used by the end user’s application. 
  
-{{:resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_connections.png?nolink|}}+{{:resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_connections.png?direct|}}
  
 ==== MCU Pin Use Table ==== ==== MCU Pin Use Table ====
Line 87: Line 87:
 The ADC servicing is done in the timer interrupt service routine.  The conversion will begin on the rising edge of a timer output and the ISR is called on the falling edge as shown in diagram below.  The ADC servicing is done in the timer interrupt service routine.  The conversion will begin on the rising edge of a timer output and the ISR is called on the falling edge as shown in diagram below. 
  
-{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_adcreadseq.png?nolink |}}+{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_adcreadseq.png?direct |}}
  
 Data collected from the ADC is stored in a dedicated 16kbyte (16,384) buffer that will later be sent out a UART port to a PC host.  The buffer can be divided into segments for different ADC channels as set by the incoming command.  The 16kbyte buffer is storing 16-bit conversions, thus this is an 8Ksample buffer. Data collected from the ADC is stored in a dedicated 16kbyte (16,384) buffer that will later be sent out a UART port to a PC host.  The buffer can be divided into segments for different ADC channels as set by the incoming command.  The 16kbyte buffer is storing 16-bit conversions, thus this is an 8Ksample buffer.
Line 98: Line 98:
 The SPI clock is set to 25 MHz.  This is half the MCU system clock and the fastest achievable SPI master clock from the VA10800.  Special settings are required to make this operate correctly at this speed.  The data in (MISO) of the MCU must be setup to capture the ADC’s output on the falling edge of the SPI SCK signal.  The filtering for these pins must be disabled and the synchronous setting disabled.  FILTER = 0x1.   The SPI clock is set to 25 MHz.  This is half the MCU system clock and the fastest achievable SPI master clock from the VA10800.  Special settings are required to make this operate correctly at this speed.  The data in (MISO) of the MCU must be setup to capture the ADC’s output on the falling edge of the SPI SCK signal.  The filtering for these pins must be disabled and the synchronous setting disabled.  FILTER = 0x1.  
  
-{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_spi_explanation.png?nolink |}}+{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_spi_explanation.png?direct |}}
  
 ==== Aligning CNV signals for ADC0 & ADC1 ==== ==== Aligning CNV signals for ADC0 & ADC1 ====
Line 104: Line 104:
 One of the sampling timing requirements is that the CNV signals for ADC0 and ADC1 being exactly aligned.  This is accomplished by using the cascade function of the Vorago timers.  One timer, TIM_0, is used to trigger two other timers that create the CNV signals using the PWM function.   One of the sampling timing requirements is that the CNV signals for ADC0 and ADC1 being exactly aligned.  This is accomplished by using the cascade function of the Vorago timers.  One timer, TIM_0, is used to trigger two other timers that create the CNV signals using the PWM function.  
  
-{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_timer_cascade.png?nolink |}}+{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_timer_cascade.png?direct|}}
  
 ==== External Trigger Mode ==== ==== External Trigger Mode ====
Line 133: Line 133:
 The below diagram shows the priority hierarchy.  The OS will jump between the data acquisition task and the User task.  Interrupts are implemented for the ADC sampling, the tick timer and the UART receive process.  Either the data acquisition task or the user task can be interrupted when one of these events occurs. The below diagram shows the priority hierarchy.  The OS will jump between the data acquisition task and the User task.  Interrupts are implemented for the ADC sampling, the tick timer and the UART receive process.  Either the data acquisition task or the user task can be interrupted when one of these events occurs.
  
-{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_taskdiagram.png?nolink |}}+{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_taskdiagram.png?direct |}}
  
 Due to some inherent interrupt blocking of FreeRTOS during task changes, a conflict can arise when the ADCs are being converted very rapidly, under 4us.  During an acquisition experiment with sampling rate under 4us, the RTOS is temporarily disabled.   Due to some inherent interrupt blocking of FreeRTOS during task changes, a conflict can arise when the ADCs are being converted very rapidly, under 4us.  During an acquisition experiment with sampling rate under 4us, the RTOS is temporarily disabled.  
Line 148: Line 148:
 ==== Temperature and Vcc Calculation ==== ==== Temperature and Vcc Calculation ====
  
-The RTD data sheet contains a table with resistance values for every 1C.  Firmware has created a linear interpolation conversion program for 5 different regions in the -55C to 200C range.  +The RTD data sheet contains a table with resistance values for every 1°C.  Firmware has created a linear interpolation conversion program for 5 different regions in the -55°C to 200°C range.  
  
 Both the RTD and VCC calculations account for a voltage divider network.   Both the RTD and VCC calculations account for a voltage divider network.  
-<note important>RTD and VCC calculations were modified to account for two 100k resistors used to bias the output of the Analog Multiplexor.  See the schematic for details on this.</note>  +<note important>RTD and VCC calculations were modified to account for two 100kΩ resistors used to bias the output of the Analog Multiplexor.  See the schematic for details on this.</note>  
  
 ===== Performance ===== ===== Performance =====
Line 161: Line 161:
 As shown in the below diagram, the fastest ADC sample rate using interrupt is 413 kHz which corresponds to 2.4ųs. As shown in the below diagram, the fastest ADC sample rate using interrupt is 413 kHz which corresponds to 2.4ųs.
  
-{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_burstmode1.png?nolink&|}}+{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_burstmode1.png?direct&|}}
  
-{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_burstmode2.png?nolink |}}+{{ :resources:eval:user-guides:high-temp:ev-ht-200cdaq1:firmware_burstmode2.png?direct |}}
  
 ==== UART RX Performance ==== ==== UART RX Performance ====
resources/eval/user-guides/high-temp/ev-ht-200cdaq1/firmware.txt · Last modified: 01 Mar 2018 03:41 by Jeff Watson