Skip to content

Commit

Permalink
Fix Bluetooth info
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 committed Apr 1, 2024
1 parent a78805e commit ae3aaff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp_flasher/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "BT" in features or "BT 5" in features
has_bluetooth = "BLE" 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(
Expand Down

0 comments on commit ae3aaff

Please sign in to comment.