From 819d0ff833e4ff7c9315b423ccde32d9b70fef0c Mon Sep 17 00:00:00 2001 From: Lukasz Skrzypczak Date: Wed, 17 Feb 2021 08:33:54 -0800 Subject: [PATCH] [EGD-3685] Fixed linux stubs Fixed broken linux stubs --- module-bsp/board/linux/vibrator/vibrator.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/module-bsp/board/linux/vibrator/vibrator.cpp b/module-bsp/board/linux/vibrator/vibrator.cpp index 426a4679f3b15145fa540d8d98d5e2817f1e37d8..c8d900e2e945fd6cd839b3493ea6d546754f55f6 100644 --- a/module-bsp/board/linux/vibrator/vibrator.cpp +++ b/module-bsp/board/linux/vibrator/vibrator.cpp @@ -17,18 +17,9 @@ namespace bsp { LOG_DEBUG("vibration ends \t\U0001f6d1\U0001f4f3"); } - void init() + void init(sys::ms pulse) {} void deinit() {} - void set(State state) - { - if (state == State::On) { - enable(); - } - else { - disable(); - } - } } // namespace vibrator } // namespace bsp \ No newline at end of file