summaryrefslogtreecommitdiff
path: root/src/drivers/bluetooth.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/bluetooth.cpp')
-rw-r--r--src/drivers/bluetooth.cpp2
1 files changed, 1 insertions, 1 deletions
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<int>(mac[0])
+ name << "Tangara " << std::hex << static_cast<int>(mac[0])
<< static_cast<int>(mac[1]);
return std::pmr::string{name.str(), &memory::kSpiRamResource};
}