Parcourir la source

Fix NOMORE() sign warning in stepper (#13894)

Tanguy Pruvot il y a 5 ans
Parent
révision
7da63fa03f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      Marlin/src/module/stepper.cpp

+ 1
- 1
Marlin/src/module/stepper.cpp Voir le fichier

@@ -1298,7 +1298,7 @@ void Stepper::isr() {
1298 1298
     ;
1299 1299
 
1300 1300
     // Limit the value to the maximum possible value of the timer
1301
-    NOMORE(interval, HAL_TIMER_TYPE_MAX);
1301
+    NOMORE(interval, uint32_t(HAL_TIMER_TYPE_MAX));
1302 1302
 
1303 1303
     // Compute the time remaining for the main isr
1304 1304
     nextMainISR -= interval;

Chargement…
Annuler
Enregistrer