Skip to content

Commit

Permalink
Update RaespDevice.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
cziter15 authored May 25, 2024
1 parent 56e9f98 commit 5756cb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/src/apps/raesp/RaespDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ namespace apps::raesp
otaUpdaterSp->onUpdateStart->registerEvent(otaUpdateStartEventHandleSp, std::bind(&RaespDevice::onOtaUpdateStart, this));

/* Start LED blinking on finished init. */
if (auto statusLed_sp{wifiLedWp.lock()})
statusLed_sp->setBlinking(500);
if (auto wifiLedSp{wifiLedWp.lock()})
wifiLedSp->setBlinking(500);

/* Application finished initialization, return true as it succedeed. */
return true;
Expand Down

0 comments on commit 5756cb5

Please sign in to comment.