From ff43243283f493ac1ae3a6bc51552d9952ea93b0 Mon Sep 17 00:00:00 2001 From: Pascal <engelerp@phys.ethz.ch> Date: Tue, 13 Jun 2023 16:57:00 +0200 Subject: [PATCH] Typo fix --- firmware/drivers/ptimer/ptimer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/drivers/ptimer/ptimer.cpp b/firmware/drivers/ptimer/ptimer.cpp index 883fc26..db549a5 100644 --- a/firmware/drivers/ptimer/ptimer.cpp +++ b/firmware/drivers/ptimer/ptimer.cpp @@ -8,5 +8,5 @@ void PTimer::start(){ } unsigned long PTimer::elapsed(){ - return static_cast<unsigned long>(micros() - start_t_);; + return static_cast<unsigned long>(micros() - start_t_); } -- GitLab