tools/autobuild: Add nrf port to autobuild scripts.

This commit is contained in:
iabdalkader 2022-07-12 22:48:39 +02:00 committed by Damien George
parent 74794d42b8
commit 2076f2efcc
2 changed files with 6 additions and 0 deletions

View File

@ -74,6 +74,8 @@ cd ../esp32
(source ${IDF_PATH_V44}/export.sh && build_esp32_boards ${FW_TAG} ${LOCAL_FIRMWARE})
cd ../mimxrt
build_mimxrt_boards ${FW_TAG} ${LOCAL_FIRMWARE}
cd ../nrf
build_nrf_boards ${FW_TAG} ${LOCAL_FIRMWARE}
cd ../renesas-ra
build_renesas_ra_boards ${FW_TAG} ${LOCAL_FIRMWARE}
cd ../rp2

View File

@ -103,6 +103,10 @@ function build_mimxrt_boards {
build_boards modmimxrt.c $1 $2 bin hex
}
function build_nrf_boards {
build_boards nrfx_glue.h $1 $2 bin hex
}
function build_renesas_ra_boards {
build_boards ra_it.c $1 $2 hex
}