Skip to content

Commit

Permalink
add spi_v2
Browse files Browse the repository at this point in the history
  • Loading branch information
JC-282-AD committed Sep 19, 2024
1 parent 038e22f commit 77fc639
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/scripts/example_tester_78002.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,14 @@ function init() {
then
make -C $Path/$testName distclean

if [[$1 = "ADC" || $1 = "UART" ]];
then
make -j -C $Path/$testName METHOD=$2
elif [[ $1 = "SPI_v2"]];
then
make -j -C $Path/SPI MXC_SPI_VERSION=$2
if [[ $1 == "ADC" || $1 == "UART" ]]; then
make -j -C "$Path/$testName" METHOD="$2"
elif [[ $1 == "SPI_v2" ]]; then
make -j -C "$Path/SPI" MXC_SPI_VERSION="$2"
else
make -j -C $Path/$testName
make -j -C "$Path/$testName"
fi

fi

if [[ $testName != Library_Generate && $testName != Library_Use ]]
Expand Down

0 comments on commit 77fc639

Please sign in to comment.