From 95263ad64aaf8a18fb5ccbd1716ca4afb480957e Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Mon, 1 Apr 2024 12:41:45 +0200 Subject: [PATCH] Better BT info fix --- esp_flasher/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp_flasher/common.py b/esp_flasher/common.py index 06a6a91..1da16cc 100644 --- a/esp_flasher/common.py +++ b/esp_flasher/common.py @@ -125,7 +125,7 @@ def read_chip_info(chip): features = read_chip_property(chip.get_chip_features) num_cores = 2 if "Dual Core" in features else 1 frequency = next((x for x in ("160MHz", "240MHz") if x in features), "80MHz") - has_bluetooth = "BLE" in features or "BT 5" in features + has_bluetooth = "BLE" in features or "BT" in features or "BT 5" in features has_embedded_flash = "Embedded Flash" in features has_factory_calibrated_adc = "VRef calibration in efuse" in features return ESP32ChipInfo(