summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorailurux <ailuruxx@gmail.com>2024-05-29 08:18:31 +1000
committerailurux <ailuruxx@gmail.com>2024-05-29 08:18:31 +1000
commitef812a53e5a84665e74be8c46cb983edaa712b3f (patch)
treef12defbfc8991f49e0052efbe2ed4105ad996ef4 /src
parent9d67ddcf6e22ed3ea9d7da2dfcb368f87d3411f7 (diff)
downloadtangara-fw-ef812a53e5a84665e74be8c46cb983edaa712b3f.tar.gz
Minor formatting fix
Diffstat (limited to 'src')
-rw-r--r--src/drivers/bluetooth.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/bluetooth.cpp b/src/drivers/bluetooth.cpp
index 13d6747e..4880150f 100644
--- a/src/drivers/bluetooth.cpp
+++ b/src/drivers/bluetooth.cpp
@@ -540,7 +540,7 @@ static void timeoutCallback(TimerHandle_t) {
}
void Connecting::entry() {
- sTimeoutTimer = xTimerCreate("bt_timeout", pdMS_TO_TICKS(15000), false, NULL,
+ sTimeoutTimer = xTimerCreate("bt_timeout", pdMS_TO_TICKS(15000), false, NULL,
timeoutCallback);
xTimerStart(sTimeoutTimer, portMAX_DELAY);
@@ -568,7 +568,7 @@ void Connecting::react(const events::ConnectTimedOut& ev) {
void Connecting::react(const events::Disable& ev) {
// TODO: disconnect gracefully
- transit<Disabled>();
+ transit<Disabled>();
}
void Connecting::react(const events::PreferredDeviceChanged& ev) {