Skip to content

Commit 6783b56

Browse files
committed
fix(motor): correct function call in tock method.
1 parent 5800c2e commit 6783b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/embed/extmod/modtrezorio/modtrezorio-motor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_trezorio_MOTOR_tick_obj,
7272
/// Weak vibrate
7373
/// """
7474
STATIC mp_obj_t mod_trezorio_MOTOR_tock(mp_obj_t self) {
75-
motor_tick();
75+
motor_tock();
7676
return mp_const_none;
7777
}
7878
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_trezorio_MOTOR_tock_obj,

0 commit comments

Comments
 (0)