Skip to content

Commit

Permalink
ARK Jetson Carrier support 3rd power module
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKlimaj authored and dagar committed Aug 14, 2023
1 parent 4fce159 commit 5f9443a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions boards/ark/fmu-v6x/init/rc.board_sensors
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
# ARK FMUARKV6X specific board sensors init
#------------------------------------------------------------------------------
set HAVE_PM2 yes
set HAVE_PM3 yes

if ver hwtypecmp ARKV6X005000 ARKV6X005001 ARKV6X005002 ARKV6X005003 ARKV6X005004
then
set HAVE_PM2 no
set HAVE_PM3 no
fi

if param compare -s ADC_ADS1115_EN 1
Expand All @@ -25,26 +27,43 @@ then
then
ina226 -X -b 2 -t 2 -k start
fi

if [ $HAVE_PM3 = yes ]
then
ina226 -X -b 3 -t 2 -k start
fi
fi

if param compare SENS_EN_INA228 1
then
# Start Digital power monitors
ina228 -X -b 1 -t 1 -k start

if [ $HAVE_PM2 = yes ]
then
ina228 -X -b 2 -t 2 -k start
fi

if [ $HAVE_PM3 = yes ]
then
ina228 -X -b 3 -t 2 -k start
fi
fi

if param compare SENS_EN_INA238 1
then
# Start Digital power monitors
ina238 -X -b 1 -t 1 -k start

if [ $HAVE_PM2 = yes ]
then
ina238 -X -b 2 -t 2 -k start
fi

if [ $HAVE_PM3 = yes ]
then
ina238 -X -b 3 -t 2 -k start
fi
fi

# Internal SPI bus IIM42652 with SPIX measured frequency of 32.051kHz
Expand All @@ -63,3 +82,4 @@ bmm150 -I start
bmp388 -I start

unset HAVE_PM2
unset HAVE_PM3

0 comments on commit 5f9443a

Please sign in to comment.