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
7 changes: 7 additions & 0 deletions firmware/ESP32/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,10 @@ monitor_speed = 115200
board_build.partitions = with_key.csv



[env:esp32s3]
platform = espressif32
board = esp32-s3-devkitc-1
framework = espidf
monitor_speed = 115200
Comment on lines +20 to +24
board_build.partitions = with_key.csv
9 changes: 9 additions & 0 deletions firmware/ESP32/sdkconfig.defaults
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# ESP32-S3 needs these enabled explicitly (the original ESP32 has them on by default):
# - legacy BLE 4.2 advertising API used by the firmware
# - 4MB flash so with_key.csv's key partition (ends at 0x210000) fits
Comment on lines +1 to +3
CONFIG_BT_ENABLED=y
CONFIG_BT_BLUEDROID_ENABLED=y
CONFIG_BT_BLE_ENABLED=y
CONFIG_BT_BLE_42_FEATURES_SUPPORTED=y
CONFIG_BT_BLE_50_FEATURES_SUPPORTED=y
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y