fix(ble_mesh):Fixed a compatibility issue with the provisioner

Closes https://github.com/espressif/esp-idf/issues/13741
This commit is contained in:
luoxu 2024-05-09 10:50:41 +08:00
parent be2fba6057
commit d4aa5c8cc0

View File

@ -1702,7 +1702,7 @@ static void prov_capabilities(const uint8_t idx, const uint8_t *data)
algorithms = sys_get_be16(&data[1]);
BT_INFO("Algorithms: 0x%04x", algorithms);
if (algorithms != BIT(PROV_ALG_P256)) {
if (!(algorithms & BIT(PROV_ALG_P256))) {
BT_ERR("Invalid algorithms 0x%04x", algorithms);
goto fail;
}