8000 tools/autobuild: Update for ports/renesas-ra. · jimmo/micropython@e3c880a · GitHub
[go: up one dir, main page]

Skip to content

Commit e3c880a

Browse files
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>
1 parent 1e72580 commit e3c880a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

tools/autobuild/autobuild.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ cd ../esp32
74< B770 /td>74
(source ${IDF_PATH_V44}/export.sh && build_esp32_boards ${FW_TAG} ${LOCAL_FIRMWARE})
7575
cd ../mimxrt
7676
build_mimxrt_boards ${FW_TAG} ${LOCAL_FIRMWARE}
77+
cd ../renesas-ra
78+
build_renesas_ra_boards ${FW_TAG} ${LOCAL_FIRMWARE}
7779
cd ../rp2
7880
build_rp2_boards ${FW_TAG} ${LOCAL_FIRMWARE}
7981
cd ../samd

tools/autobuild/build-boards.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ function build_mimxrt_boards {
103103
build_boards modmimxrt.c $1 $2 bin hex
104104
}
105105

106+
function build_renesas_ra_boards {
107+
build_boards ra_it.c $1 $2 hex
108+
}
109+
106110
function build_rp2_boards {
107111
build_boards modrp2.c $1 $2 uf2
108112
}

0 commit comments

Comments
 (0)
0