Skip to content

Commit 613c968

Browse files
committed
Update arduino_portenta_h7_m7.conf to enable memc
resolves: arduino#74 needed to add: CONFIG_MEMC=y to have the SDRAM enabled and as such not fault if you do anything with the SDRAM library. Also enabled CONFIG_DMA=y As not sure if that was needed but is in the GIGA .conf file Update arduino_portenta_h7_m7.overlay Add dma sections to remove the build warnings
1 parent 8b29f64 commit 613c968

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

loader/boards/arduino_portenta_h7_m7.conf

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ CONFIG_LLEXT_HEAP_SIZE=128
2626

2727
#CONFIG_ADC=y
2828
#CONFIG_PWM=y
29+
CONFIG_DMA=y
30+
CONFIG_MEMC=y
2931
CONFIG_SPI_ASYNC=y
3032
CONFIG_SPI_STM32_INTERRUPT=y
3133

loader/boards/arduino_portenta_h7_m7.overlay

+8
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@
4040
pinctrl-names = "default";
4141
};
4242

43+
&dmamux1 {
44+
status = "okay";
45+
};
46+
47+
&dma1 {
48+
status = "okay";
49+
};
50+
4351
&rng {
4452
status = "okay";
4553
};

0 commit comments

Comments
 (0)