File tree 5 files changed +16
-5
lines changed
5 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
board=$1
8
8
variant=$2
9
+ shield=$3
9
10
10
11
if [[ $# -eq 0 ]]; then
11
12
board=arduino_giga_r1//m7
14
15
15
16
source venv/bin/activate
16
17
17
- (west build loader -b $board -p && west build -t llext-edk)
18
+ if [ -n " $shield " ]; then
19
+ shield_arg=" --shield $shield "
20
+ else
21
+ shield_arg=" "
22
+ fi
23
+
24
+ (west build loader -b $board -p $shield_arg && west build -t llext-edk)
18
25
(tar xfp build/zephyr/llext-edk.tar.xz --directory variants/$variant /)
19
26
20
27
(cp build/zephyr/zephyr.elf firmwares/zephyr-$variant .elf)
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
- ./extra/build.sh arduino_giga_r1//m7 arduino_giga_r1_m7
5
+ ./extra/build.sh arduino_giga_r1//m7 arduino_giga_r1_m7 giga_display_shield
6
6
./extra/build.sh arduino_nano_33_ble//sense arduino_nano_33_ble_sense
7
7
./extra/build.sh arduino_portenta_h7//m7 arduino_portenta_h7
8
8
./extra/build.sh ek_ra8d1 ek_ra8d1
Original file line number Diff line number Diff line change @@ -39,3 +39,6 @@ CONFIG_VIDEO_BUFFER_POOL_ALIGN=32
39
39
CONFIG_VIDEO_BUFFER_USE_SHARED_MULTI_HEAP=y
40
40
CONFIG_VIDEO_BUFFER_SMH_ATTRIBUTE=2
41
41
CONFIG_VIDEO_GC2145=y
42
+
43
+ CONFIG_DISPLAY=y
44
+ CONFIG_INPUT=y
Original file line number Diff line number Diff line change 194
194
&adc1_inp0_pa0_c
195
195
&adc1_inp1_pa1_c>;
196
196
pinctrl-names = "default";
197
- st,adc-clock-source = < SYNC> ;
197
+ st,adc-clock-source = " SYNC" ;
198
198
st,adc-prescaler = <4>;
199
199
status = "okay";
200
200
292
292
pinctrl-0 = <&adc3_inp0_pc2_c
293
293
&adc3_inp1_pc3_c>;
294
294
pinctrl-names = "default";
295
- st,adc-clock-source = < SYNC> ;
295
+ st,adc-clock-source = " SYNC" ;
296
296
st,adc-prescaler = <4>;
297
297
status = "okay";
298
298
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ manifest:
17
17
projects :
18
18
- name : zephyr
19
19
remote : arduino
20
- revision : arduino_core_merge_4.0.99
20
+ revision : giga_display_shield
21
21
import :
22
22
name-allowlist :
23
23
- cmsis
@@ -42,6 +42,7 @@ manifest:
42
42
- segger
43
43
- thrift
44
44
- mcuboot
45
+ - lvgl
45
46
- name : ArduinoCore-API
46
47
path : modules/lib/ArduinoCore-API
47
48
revision : master
You can’t perform that action at this time.
0 commit comments