From 7a4d92a7eff694c95f6a36d45a0e289696966266 Mon Sep 17 00:00:00 2001 From: Li Shuai Date: Mon, 25 Mar 2024 16:06:03 +0800 Subject: [PATCH] fix(example/bluetooth): fix app partition is to small for binary esp_hid_device.bin and esp_hid_host.bin --- examples/bluetooth/esp_hid_device/sdkconfig.defaults | 1 + examples/bluetooth/esp_hid_host/sdkconfig.defaults | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/bluetooth/esp_hid_device/sdkconfig.defaults b/examples/bluetooth/esp_hid_device/sdkconfig.defaults index 6496bd43ef..b1d0b9f9ff 100644 --- a/examples/bluetooth/esp_hid_device/sdkconfig.defaults +++ b/examples/bluetooth/esp_hid_device/sdkconfig.defaults @@ -6,3 +6,4 @@ CONFIG_BT_BLE_ENABLED=y CONFIG_BT_HID_ENABLED=y CONFIG_BT_HID_DEVICE_ENABLED=y CONFIG_BT_BLE_42_FEATURES_SUPPORTED=y +CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y diff --git a/examples/bluetooth/esp_hid_host/sdkconfig.defaults b/examples/bluetooth/esp_hid_host/sdkconfig.defaults index 88817d5ac6..d712b186d9 100644 --- a/examples/bluetooth/esp_hid_host/sdkconfig.defaults +++ b/examples/bluetooth/esp_hid_host/sdkconfig.defaults @@ -7,3 +7,4 @@ CONFIG_BT_HID_ENABLED=y CONFIG_BT_HID_HOST_ENABLED=y CONFIG_BT_BLE_42_FEATURES_SUPPORTED=y CONFIG_BT_GATTC_NOTIF_REG_MAX=16 +CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y