From 6e2e885ec564ada7cb5295d9e7bbafe1a88ed4f5 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Sat, 1 Feb 2020 23:28:24 +0200 Subject: [PATCH] genesys: Use same step type in motor tables on 8600F --- backend/genesys/tables_motor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/genesys/tables_motor.cpp b/backend/genesys/tables_motor.cpp index 5402241fb..a9afb1804 100644 --- a/backend/genesys/tables_motor.cpp +++ b/backend/genesys/tables_motor.cpp @@ -297,7 +297,7 @@ void genesys_init_motor_tables() profile = MotorProfile(); profile.slope = MotorSlope::create_from_steps(54612, 1500, 219); - profile.step_type = StepType::HALF; + profile.step_type = StepType::QUARTER; profile.motor_vref = 2; profile.resolutions = { 1200, 2400 }; profile.scan_methods = { ScanMethod::FLATBED }; @@ -322,7 +322,7 @@ void genesys_init_motor_tables() profile = MotorProfile(); profile.slope = MotorSlope::create_from_steps(54612, 1500, 219); - profile.step_type = StepType::HALF; + profile.step_type = StepType::QUARTER; profile.motor_vref = 1; profile.resolutions = { 1200, 2400 }; profile.scan_methods = { ScanMethod::TRANSPARENCY, @@ -340,7 +340,7 @@ void genesys_init_motor_tables() profile = MotorProfile(); profile.slope = MotorSlope::create_from_steps(59240, 582, 1020); - profile.step_type = StepType::HALF; + profile.step_type = StepType::QUARTER; profile.motor_vref = 2; motor.fast_profiles.push_back(std::move(profile));