tools/autobuild: Add nrf port to autobuild scripts.

pull/8901/head
iabdalkader 2022-07-12 22:48:39 +02:00 zatwierdzone przez Damien George
rodzic 74794d42b8
commit 2076f2efcc
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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
}