genesys: Use same step type in motor tables on 8600F

merge-requests/340/head
Povilas Kanapickas 2020-02-01 23:28:24 +02:00
rodzic 06cee81dbe
commit 6e2e885ec5
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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));