From c846146c2fbd7237acd2581442f563818bf12252 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 28 May 2024 12:53:02 +1000 Subject: [PATCH] Lowercase BT device name for better auto-reading --- src/drivers/bluetooth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/bluetooth.cpp b/src/drivers/bluetooth.cpp index fcb764f6..f812eb4a 100644 --- a/src/drivers/bluetooth.cpp +++ b/src/drivers/bluetooth.cpp @@ -187,7 +187,7 @@ static auto DeviceName() -> std::pmr::string { uint8_t mac[8]{0}; esp_efuse_mac_get_default(mac); std::ostringstream name; - name << "TANGARA " << std::hex << static_cast(mac[0]) + name << "Tangara " << std::hex << static_cast(mac[0]) << static_cast(mac[1]); return std::pmr::string{name.str(), &memory::kSpiRamResource}; }