From 354e9d90fb7549f092fcde09f6609142f1527dc6 Mon Sep 17 00:00:00 2001 From: smathis Date: Fri, 20 Jun 2025 13:45:30 +0200 Subject: [PATCH] Fixed missing initializer for variables in Phytron-Axis --- sinqEPICSApp/src/PhytronDriver.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sinqEPICSApp/src/PhytronDriver.cpp b/sinqEPICSApp/src/PhytronDriver.cpp index 7529064..1ed146c 100644 --- a/sinqEPICSApp/src/PhytronDriver.cpp +++ b/sinqEPICSApp/src/PhytronDriver.cpp @@ -250,6 +250,8 @@ PhytronAxis::PhytronAxis(PhytronController *pC, int axisNo, int enc) haveBrake = 0; brakeIO = -1; next_poll = -1; + homing = 0; + homing_direction = 0; } int PhytronAxis::setBrake(int brakeNO)