Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Mar 6, 2023
1 parent 9c6079f commit b477c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/platform/silabs/Rpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class Efr32Device final : public Device
pw::Status Reboot(const pw_protobuf_Empty & request, pw_protobuf_Empty & response) override
{
mRebootTimer = xTimerCreateStatic("Reboot", kRebootTimerPeriodTicks, false, nullptr, RebootHandler, &mRebootTimerBuffer);
xTimerStart(mRebootTimer, pdMS_TO_TICKS(0);
xTimerStart(mRebootTimer, pdMS_TO_TICKS(0));
return pw::OkStatus();
}

Expand Down

0 comments on commit b477c0c

Please sign in to comment.