From d68df7c037b19abeaee00322480e7fc9138572fd Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Mon, 22 Dec 2025 14:58:57 +0100 Subject: [PATCH] cargo: config: add -fforce-frame-pointers and set the esp-rtos tick rate to 50hz, and set flash size to 16mb --- .cargo/config.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 81f6d4d..dd55144 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,15 +1,17 @@ [target.xtensa-esp32s3-none-elf] -runner = "espflash flash --monitor --chip esp32s3 --partition-table ./partitions.csv" +runner = "espflash flash --monitor --chip esp32s3 --partition-table ./partitions.csv --flash-size 16mb" [env] ESP_LOG="info" ESP_HAL_CONFIG_PLACE_RMT_DRIVER_IN_RAM="true" ESP_HAL_EMBASSY_CONFIG_TIMER_QUEUE="multiple-integrated" ESP_WIFI_CONFIG_COUNTRY_CODE="DE" +ESP_RTOS_CONFIG_TICK_RATE_HZ="50" [build] rustflags = [ "-C", "link-arg=-nostartfiles", + "-C", "force-frame-pointers" ] target = "xtensa-esp32s3-none-elf"