From ac87d24969db4c24a9709f0b4d9c714e0165b4a7 Mon Sep 17 00:00:00 2001 From: zhanghaipeng Date: Fri, 13 Oct 2023 10:44:09 +0800 Subject: [PATCH] fix(bt/bluedroid): Optimize the description of Scan Duplicate in BLE --- components/bt/controller/esp32c3/Kconfig.in | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/components/bt/controller/esp32c3/Kconfig.in b/components/bt/controller/esp32c3/Kconfig.in index 4534bc2911..3312872bfe 100644 --- a/components/bt/controller/esp32c3/Kconfig.in +++ b/components/bt/controller/esp32c3/Kconfig.in @@ -263,20 +263,19 @@ choice BT_CTRL_SCAN_DUPL_TYPE config BT_CTRL_SCAN_DUPL_TYPE_DEVICE bool "Scan Duplicate By Device Address" help - This way is to use advertiser address filtering. The adv packet of the same address is only - allowed to be reported once + Advertising packets with the same address, address type, and advertising type are reported once. config BT_CTRL_SCAN_DUPL_TYPE_DATA bool "Scan Duplicate By Advertising Data" help - This way is to use advertising data filtering. All same advertising data only allow to be reported - once even though they are from different devices. + Advertising packets with identical advertising data, address type, and advertising type + are reported only once, even if they originate from different devices. config BT_CTRL_SCAN_DUPL_TYPE_DATA_DEVICE bool "Scan Duplicate By Device Address And Advertising Data" help - This way is to use advertising data and device address filtering. All different adv packets with - the same address are allowed to be reported. + Advertising packets with the same address, advertising data, address type, + and advertising type are reported only once. endchoice config BT_CTRL_SCAN_DUPL_TYPE