summaryrefslogtreecommitdiffhomepage
path: root/digital/beacon/src/motor.c
diff options
context:
space:
mode:
authorFlorent Duchon2013-05-02 17:55:21 +0200
committerFlorent Duchon2013-05-02 22:52:48 +0200
commit3486cd4a8c3b7d66f19ab625ca73d5b0d7183222 (patch)
tree9d8737a12f35ed8f91827faf6649af8573a0e8d0 /digital/beacon/src/motor.c
parent737ef0c4459f14ff7d01a8f431a234c6e2fbc875 (diff)
digital/beacon: change initial motor speed
Diffstat (limited to 'digital/beacon/src/motor.c')
-rw-r--r--digital/beacon/src/motor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/digital/beacon/src/motor.c b/digital/beacon/src/motor.c
index 2a54e694..dc2b488e 100644
--- a/digital/beacon/src/motor.c
+++ b/digital/beacon/src/motor.c
@@ -54,7 +54,7 @@ void motor_init(void)
/* This function starts the motor rotation */
void motor_start(void)
{
- motor_set_speed(MOTOR_SPEED_MIN);
+ motor_set_speed(MOTOR_SPEED_MAX);
start_codewheel_timer_task();
}