From 3486cd4a8c3b7d66f19ab625ca73d5b0d7183222 Mon Sep 17 00:00:00 2001 From: Florent Duchon Date: Thu, 2 May 2013 17:55:21 +0200 Subject: digital/beacon: change initial motor speed --- digital/beacon/src/motor.c | 2 +- digital/beacon/src/motor.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'digital/beacon') 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(); } diff --git a/digital/beacon/src/motor.h b/digital/beacon/src/motor.h index f0a4e107..ccfcdb6a 100644 --- a/digital/beacon/src/motor.h +++ b/digital/beacon/src/motor.h @@ -29,7 +29,7 @@ #define MOTOR_TARGET_SPEED_INIT 140 #define MOTOR_SPEED_STOP 0 #define MOTOR_SPEED_MIN 140 -#define MOTOR_SPEED_MAX 140 +#define MOTOR_SPEED_MAX 155 typedef struct { -- cgit v1.2.3