tools/autobuild: Add nrf port to autobuild scripts.
This commit is contained in:
parent
74794d42b8
commit
2076f2efcc
|
@ -74,6 +74,8 @@ cd ../esp32
|
||||||
(source ${IDF_PATH_V44}/export.sh && build_esp32_boards ${FW_TAG} ${LOCAL_FIRMWARE})
|
(source ${IDF_PATH_V44}/export.sh && build_esp32_boards ${FW_TAG} ${LOCAL_FIRMWARE})
|
||||||
cd ../mimxrt
|
cd ../mimxrt
|
||||||
build_mimxrt_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
build_mimxrt_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
||||||
|
cd ../nrf
|
||||||
|
build_nrf_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
||||||
cd ../renesas-ra
|
cd ../renesas-ra
|
||||||
build_renesas_ra_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
build_renesas_ra_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
||||||
cd ../rp2
|
cd ../rp2
|
||||||
|
|
|
@ -103,6 +103,10 @@ function build_mimxrt_boards {
|
||||||
build_boards modmimxrt.c $1 $2 bin hex
|
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 {
|
function build_renesas_ra_boards {
|
||||||
build_boards ra_it.c $1 $2 hex
|
build_boards ra_it.c $1 $2 hex
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue