From 7b1bfe347b770cb3668a813f76d46f2c4f88c578 Mon Sep 17 00:00:00 2001
From: Alberto Nidasio <alberto.nidasio@skywarder.eu>
Date: Thu, 2 Jun 2022 22:44:52 +0200
Subject: [PATCH] [Buzzer] Fixed compilation

---
 src/tests/actuators/test-buzzer.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tests/actuators/test-buzzer.cpp b/src/tests/actuators/test-buzzer.cpp
index fc6f6fc6b..ddadefadb 100644
--- a/src/tests/actuators/test-buzzer.cpp
+++ b/src/tests/actuators/test-buzzer.cpp
@@ -35,11 +35,11 @@ int main()
     Thread::sleep(3 * 1000);
 
     printf("Now continuosly toggle the buzzer every 500ms for 5 seconds");
-    buzzer.continuoslyToggle(500, 500);
+    buzzer.continuouslyToggle(500, 500);
     Thread::sleep(6 * 1000);
 
     printf("Now continuosly toggle the buzzer every 200ms for 5 seconds");
-    buzzer.continuoslyToggle(200, 200);
+    buzzer.continuouslyToggle(200, 200);
     Thread::sleep(6 * 1000);
 
     printf("Now manually turning on the buzzer for 1 second\n");
-- 
GitLab