tools/autobuild: Update for ports/renesas-ra.

* Add build_renesas_ra_boards call in autobuild.sh
* Add build_renesas_ra_boards function to generate firmware.hex.

Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
This commit is contained in:
Takeo Takahashi 2022-05-06 17:15:21 +09:00
parent 1e72580fd8
commit e3c880a569
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}) (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 ../renesas-ra
build_renesas_ra_boards ${FW_TAG} ${LOCAL_FIRMWARE}
cd ../rp2 cd ../rp2
build_rp2_boards ${FW_TAG} ${LOCAL_FIRMWARE} build_rp2_boards ${FW_TAG} ${LOCAL_FIRMWARE}
cd ../samd cd ../samd

View File

@ -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_renesas_ra_boards {
build_boards ra_it.c $1 $2 hex
}
function build_rp2_boards { function build_rp2_boards {
build_boards modrp2.c $1 $2 uf2 build_boards modrp2.c $1 $2 uf2
} }