aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Embedded_SW/Embedded/Modules')
-rw-r--r--Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticsJogging.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticsJogging.c b/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticsJogging.c
index 1e4b1c0b3..aab2f3329 100644
--- a/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticsJogging.c
+++ b/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticsJogging.c
@@ -66,7 +66,7 @@ uint32_t MotorJoggingRequestFunc(MessageContainer* requestContainer)
}
if(MotorId == HARDWARE_MOTOR_TYPE__MOTO_DRYER_LID)
{
- int Pos_Value = (direction == 1)?0:2;
+ uint32_t Pos_Value = ((direction == 1)?0:2);
MotorGoTo(MotorId, Pos_Value );
}
else