FlexCase
Analog Input Guide
- Read voltages of internal states through the ADC inputs
- Measure controller ground with extended bipolar range

Prerequisites
- Complete the quick-start guide for a tutorial on connecting and flashing binaries
- Complete the Simulink guide for building a model into a flashable binary
- Complete the FreeMASTER guide for viewing MCU variables live. Alternatively, you can use a CAN trace tool to view results if you have successfully read CAN outputs from the MCU
- Download the latest Simulink sample software (we will use ADC.slx)
Compile and Run the Software Sample
This software sample uses the ADC to assess the power consumption of the FlexCase via the internal voltage and current measurements.
- Open ADC.slx
- If you are going to use FreeMASTER to view the results, be sure to change the variable storage types to “Volatile” temporarily
- Build the model and flash to the MCU
Either through a CAN trace or through FreeMASTER, you should see the battvolt reading the supply voltage (mV), and the cursens reading between 100 and 200, depending on what options your FlexCase is equipped with. The cursens variable reads proportional to the current draw on the DCDC converter. Due to many factors, It has a non-linear relationship to the amperage measured at the external power supply, but can still be used as a heuristic for the power consumption of the FlexCase.
If you have successfully connected to the FlexCase via SSH, you can initiate a disk write test on the MPU to consume more power by running the following command in terminal:
dd if=/dev/zero of=/tmp/test bs=100M count=1 oflag=dsync
This will write to temporary storage, and should take approximately 5 seconds to complete. You should see the increase power consumption reflected in the cursens variable.
MPU Reads (FlexBench Only)
The analog input is implemented using a SPI-based chip on SPI0, CS1. The single-ended measurement range is 0-36V in 10bit resolution, with the ability for differential modes. Please keep in mind that SPI0 is also used by the MCU, so care must be taken to coordinate the different communication channels. The following python script shows reading of the ADC module channels.
import spidev
import time
spi = spidev.SpiDev()
spi.open(0,1)
spi.max_speed_hz = 1000000
spi.mode = 0
while True:
try:
for i in range(8):
time.sleep(0.1)
addrByte = 0x80 + (i << 4)
data = [0x01,addrByte,0x00] #Read CH0-7 (CH0-7 -> Analog 1-8 on header)
spi.xfer2(data) #Tx data gets overwritten with Rx data
adcVal = ((data[1] & 7) << 8 | data[2]) * 0.039
print(f"ADC{i+1}: {adcVal}") #extract last 10 bits of Rx data and convert to volts
print("")
except KeyboardInterrupt:
spi.close()
break