Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ build.zsk_args.startup-mode-wait=
build.zsk_args.startup-mode-immediate=-immediate

# These can be overridden in platform.local.txt
compiler.c.extra_flags=
compiler.c.extra_flags="-DARDUINO_LV_CONF_PATH={build.source.path}/lv_conf_user.h"
compiler.c.elf.extra_flags=
compiler.S.extra_flags=
compiler.cpp.extra_flags=
compiler.cpp.extra_flags="-DARDUINO_LV_CONF_PATH={build.source.path}/lv_conf_user.h"
compiler.ar.extra_flags=
compiler.objcopy.eep.extra_flags=
compiler.elf2hex.extra_flags=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ CONFIG_LLEXT_STORAGE_WRITABLE=n
CONFIG_SHARED_MULTI_HEAP=y
CONFIG_HEAP_MEM_POOL_SIZE=32768
CONFIG_MAIN_STACK_SIZE=32768
CONFIG_LLEXT_HEAP_SIZE=128
CONFIG_LLEXT_HEAP_SIZE=256

CONFIG_CODE_DATA_RELOCATION=y
CONFIG_MAIN_STACK_REGION="DTCM"
CONFIG_LLEXT_HEAP_REGION="SRAM2"
CONFIG_LLEXT_HEAP_REGION="SRAM1"

CONFIG_LOG_BACKEND_UART=y
CONFIG_LOG_BACKEND_UART_AUTOSTART=n
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
};

user_sketch: partition@e0000 {
reg = <0x0E0000 0x20000>;
reg = <0x000E0000 0x00040000>;
};
};
};
Expand Down Expand Up @@ -550,6 +550,17 @@
};
};

&sram1 {
reg = <0x30000000 DT_SIZE_K(256)>;
};

/delete-node/ &sram2;

&sdram1 {
/* Frame buffer memory cache will cause screen flickering. */
zephyr,memory-attr = <( DT_MEM_ARM(ATTR_MPU_RAM_NOCACHE) )>;
};

/* Include common flash filesystem configuration */
qspi_flash: &n25q128a1 {};
#include "../common/arduino_flash_fs.dtsi"
Loading