Sunday, 29 November 2020

Model Rocket Launcher Bluetooth Android Part 2

Summary
This blog details hardware and code changes to the Bluetooth PSoC Model Rocket Launcher for monitoring battery voltage and current. The current monitoring output provided by the high side switching device was measured and calibrated using multi-point characterisation in the launcher’s PSoC controller.

Purpose of Monitoring
Under-voltage battery monitoring was included to minimise the chance of battery over-discharge. The battery voltage for a
25% State of Charge (SoC) was used as a reference in the rocket launcher firmware.

Measurement and monitoring of the current drawn by the igniter were included to check the recommended all-fire current of 2 A (Estes forum) was reached during a launch.

Battery Voltage
A hardware connection for monitoring the battery voltage, using a Cypress PSoC ADC input, was not part of the initial circuit board design (PCB).

Rocket Launcher PCB with Strapped Battery ADC Input
Rocket Launcher PCB with Strapped Battery ADC Input

As the PCB included hardware for a voltage divider across the batter, a connection was required to a spare PSoC pin with ADC capability. In the image above a wire was strapped from the voltage divider to the ADC input.

Launcher Battery Voltage Divider
Launcher Battery Voltage Divider

The resistor values selected for the voltage divider were changed to use values already available in the design. Assuming a battery charged to 13.8 V, the voltage at the ADC input, taking into account the loss in the reverse protection Schottky diode D6, was approximately 2.4 V.

For the PSoC SAR ADC reference voltage, the VDDA supply pin on the PSoC was used.

It should be noted that the battery voltage measurement was for indicative purposes only. To improve ADC measurement accuracy, the ADC reference voltage could be changed to utilise the PSoC internal 1.024 V reference. Adjustment to the battery voltage divider would be required.

Launcher SAR ADC Configuration
Launcher SAR ADC Configuration

Igniter Current
The high side switching device (VN7040) features an output which provided a voltage representation of the current measured by the VN7040. A
PSoC ADC input was used to measure the voltage.

Launcher Battery Current Sense Output
Launcher Battery Current Sense Output (MSense)

The value of the resistor connected to the output of the high side switch (MSense) was reevaluated to suit an Estes igniter. Assuming losses in the circuit such as cabling (resistive), reverse protection diode forward voltage (477 mV @ 15A), the high (40 mR) and low side (30 mR) switching devices MOSFET resistances. A full charged lead-acid battery driving an igniter (Estes 800 mR) with the resistive losses should result in a current of slightly over 10 A.

VN7040 K-Factor vs Isense Response (Courtesy ST)
VN7040 K-Factor vs Isense Response (Courtesy ST)

As the operating current was expected to be above 4.5 A, the K factor of 1340 was selected from the VN7040 datasheet.

VN7040 Current Sense K Factor > 4.5 A
VN7040 Current Sense K Factor > 4.5 A

There were two caveats for calculating the current sense resistor value. Firstly, under normal operating conditions the voltage generated across the current sense resistor should be less than the ADC maximum voltage. For the existing design, the SAR ADC reference voltage was 5 V so this was not a primary concern. The maximum voltage should be reviewed if the ADC reference voltage was changed to 1.024 V. Secondly, the maximum current output by the sense output (MSense) of the high side switches was listed as 10 mA.

VN7040 Current Sense Output Max Operating Characteristics
VN7040 Current Sense Output Max Operating Characteristics

Selecting a current of 10 A and a nominal k factor of 1340, the formula shown in Table 11 of the VN7040 data sheet was applied.

VN7040 Truth Table with Current Sense Formula
VN7040 Truth Table with Current Sense Formula

Applying the formula shown in the truth table pictured above, an Isense value of 7.46 mA was yielded.

VN7040 Isense Calculation
VN7040 Isense Calculation

With a maximum ADC reference voltage of 5 V, a 590 R resistor was selected. The maximum voltage at the PSoC ADC pin, being the product of the Isense value and the resistor value, gave approximately 4.4 V.

ADC Configuration
The SAR ADC was configured for two channels, 12-bit with a conversion time of approximately 2 ms.

PSoC SAR ADC Setup
PSoC SAR ADC Setup

The results from the SAR ADC, battery voltage and current sense (voltage), were converted into millivolts.

static uint16_t    adc_result_multiplier     = 23u;
static uint16_t    adc_result2_multiplier    = 554u;
static uint16_t    adc_result_divider       = 10u;
static uint16_t    adc_result2_divider   = 100u;
static uint16_t    adc_result_trim      = 154u;

adc_result1 = ADC_SAR_CountsTo_mVolts(0,ADC_SAR_GetResult16(0));
adc_result2 = ADC_SAR_CountsTo_mVolts(1,ADC_SAR_GetResult16(1));
adc_voltage_result = (adc_result2 * adc_result2_multiplier)/adc_result2_divider;
adc_current_result= ((adc_result1 * adc_result_multiplier)- adc_result_trim)/adc_result_divider;

To calibrate the PSoC ADC current measurement, a multi-point characterisation was performed. Various resistive loads were used in place of the igniter and the ADC result recorded.

PSoC ADC Raw Data from Resistive Loads with Power Supply
PSoC ADC Raw Data from Resistive Loads with Power Supply

The ADC result was output on the serial port. ADC results were plotted against the measured current to produced the graph displayed below.

Measured Current vs PSoC ADC Voltage for Various Resistive Loads
Measured Current vs PSoC ADC Voltage for Various Resistive Loads

ADC Data Serial Output
The ADC results were output on the Rocket Launcher serial port. The data was transmitted at a rate of 921,600 baud to an Android phone which was running the application Serial USB Terminal. Written by Kai Morich, the application was one of the few which supported higher baud rates and was stable at that data rate.

Serial USB Terminal Android Application Landing Screen
Serial USB Terminal Android Application Landing Screen

Shown in the capture above is the Android phone application. Connection of a USB to TTL adaptor from the launcher to the Android phone was achieved using an On The Go (OTG) adaptor cable.

Serial USB Terminal Android Application Settings Screen
Serial USB Terminal Android Application Settings Screen

Configuration for the 921,600 baud rate was achieved through the settings tab in the application.

Serial data was captured for two supply types, the first a benchtop Rigol linear power supply and the second a lead-acid battery (1.2 AH).  The graph shown below provides the ADC measurement plotted against various resistive loads.

PSoC ADC Voltage vs Resistive Load
PSoC ADC Voltage vs Resistive Load

Bench testing with resistive loads showed that ADC measurements were stable. The graph below shows the ADC current measurement when testing with a 5 R load.

PSoC ADC Voltage Samples for Resistive Load of 5R
PSoC ADC Voltage Samples for Resistive Load of 5R

Low Battery and Current Error States
The ADC result from the battery voltage measurement was compared to a threshold of 12 V for the under-voltage detection. Similarly, for the under-current detection, the current measurement was compared a value of 0.558 V which represented approximately a current of 2 A.

    
if (SYSTEM_FLAGS_ADC.adc_has_result == true)
{   
/* Order of execution sets priority */
    if (adc_voltage_result < under_voltage_compare)
    {
        Error_State = under_voltage;
    }
    else if (adc_current_result < under_current_compare)
    {
        Error_State = under_current;
    }
}

OLED Screen Update
Additional error states relating to the low battery voltage and low igniter current were added to the rocket launcher firmware.

The OLED screen below was shown after the rocket launch cycle if the battery voltage fell below 12 V during the launch.

Rocket Launcher OLED Low Battery Screen
Rocket Launcher OLED Low Battery Screen

For the low current, the screen below was displayed after the rocket launch cycle, if the measured current fell below approximately 2 A during the launch.

Rocket Launcher OLED Low Current Screen
Rocket Launcher OLED Low Current Screen

Field Testing
Field rocket launches were performed to capture ADC results with Estes igniters. There were multiple events which caused the ADC results to vary of which some events were intrinsic to the igniter behaviour during a launch.

The graph below represents one of the instances where the launch of the rocket was successful however, the igniter wires shorted moments after liftoff. The constant current draw of the shorted wires is represented by the constant high from time 53 s.

Rocket launcher igniter current toggling at start
Rocket Launcher Igniter Current Toggling

Field Launches
Below are snippets from recent launches.

Estes Curvilinear model rocket with standard size A engine.

Estes Fat Boy model rocket with standard size A engine.

Unbranded model rocket.


Final Thoughts
The hardware and firmware updates performed to the rocket launcher provided additional features and monitoring. Specifically, monitoring the igniter current provided insight into the different events and responses which can occur to the igniter on the launchpad. In a future release, a scheme for current monitoring would involve the development of the firmware to handle the various igniter responses.

Downloads
The
updated firmware for the PSoC launcher project.

Rocket Launcher PSoC Project rev 1.03
Rocket Launcher PSoC Project rev 1.03

Wednesday, 7 October 2020

Altium Return Path Example Project

Summary
This blog provides an example Altium Designer (Altium) circuit board project which makes use of the ‘Return Path’ rule.

Altium reference material, such as Video content and documentation for configuring the 'Return Path' rule should also be reviewed when considering this feature.

Example
The Altium project for the Altera Cyclone II EP2C35F67C8 DB31.07 Daughter Board ‘DB31’ was used for the blog example. 

Altera Cyclone II EP2C35F67C8 DB31.07 Daughter Board
Altera Cyclone II EP2C35F67C8 DB31.07 Daughter Board by Altium

A single Printed Circuit Board (PCB) signal layer was used with a reference power plane to illustrate return paths.

PCB Layer Stackup
To achieve the desired board trace impedance, a PCB designer may liaise with a PCB fabrication company to define the layer stack, dielectrics, trace widths and for differential pairs the trace spacing.

As an example, the capture below shows typical information provided by a PCB fabrication company. The PCB was configured for impedance controlled differential pairs on external signal layers and single-ended internal layers.

Example PCB Manufacturer Trace Width Information
Example PCB Manufacturer Trace Width Information

The types of material used for the PCB core and pre-preg depends on the capabilities of the PCB fabrication company and budget constraints.

Example PCB Manufacturer Layer Stackup
Example PCB Manufacturer Layer Stackup

For the blog example using the DB31 project, the existing layer stack was retained. An arbitrary impedance of 55 R was selected for layer Mid-3 traces which was referenced to a single layer, Ground-5.

Example Project DB31 Layer Stackup
Example Project DB31 Layer Stackup and Controlled Impedance

Return Path Rule
As detailed in Altium documentation, the return path must be a fill, region or polygon which is unbroken. After configuring the impedance profile, a new ‘Return Path Rule’ was configured for layer Mid-3.

Altium Return Path Rule No Exclusions
Altium Return Path Rule No Exclusions

The ‘Exclude Copper Vias’ checkbox was selected to ignore violations under the Altera FPGA as a result of vias. 

Altium Return Path Rule with Exclusions
Altium Return Path Rule with Exclusions

Design Rule Check (DRC)
After performing a DRC on the original DB31 PCB, several violations required resolution.

DB31 Project PCB Net Antennae
DB31 Project PCB Net Antennae

Testing Return Path Violations
With the return path for Mid-2 signals being Ground-5, a cutout was inserted into the ground polygon at a location which resulted in a return path violation.

DB31 Project Cutout in Return Path Reference Plane
DB31 Project Cutout in Return Path Reference Plane

DB31 Project Signal Traces
DB31 Project Signal Traces

After running a DRC, violations for Return Paths were shown for Mid-2.

DB31 Return Path Violations
DB31 Return Path Violations

Return Path Tolerances
Some factors not detailed in the Altium documentation are the tolerances of the 'Return Path' rule. Tolerances in this case refer to the amount of return path copper which can be removed from beneath the signal trace before a violation is raised by Altium Designer.

For the image shown below a cutout was placed in the return plane, Ground-5, which ran in parallel with the signal trace. This resulted in a violation.

Altium Return Path Violation Parallel Ground Cutout
Altium Return Path Violation Parallel Ground Cutout

In the capture below the edge of a rectangular cutout was placed in the return plane, Ground-5, which intersected with the signal trace.

Altium Return Path Violation Tolerance Ground Cutout
Altium Return Path Violation Tolerance Ground Cutout

A return path violation was raised when the cutout encroached under half of the mid layer track. 

Altium Return Path Violation Tolerance Rectangular Cutout Measurement
Altium Return Path Violation Tolerance Rectangular Cutout Measurement

Next, a circular cutout was placed in the return plane which resulted in a violation at the position shown in the capture below.

Altium Return Path Violation Tolerance Circular Cutout Measurement
Altium Return Path Violation Tolerance Circular Cutout Measurement

Final Thoughts
For circuit board designs containing features such as DDR memory, high-frequency differential pairs or high-speed inter-chip signals, utilising the 'return path' rule automates the previous manual checking required for return paths.

However, as with any tool, there are tolerances and limitations which would ideally be detailed by the manufacturer. The effects of polygon cutouts, the result of signal trace to return path coverage and details for return paths with coplanar impedance control are some trappings which may of interest to the PCB designer.

Acknowledgements
Thanks to Altium for the DB31 project which was used to illustrate the return path rule in this blog.

Downloads
The updated DB31 project used in the blog.