Procházet zdrojové kódy

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

Tanguy Pruvot před 5 roky
rodič
revize
7da63fa03f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      Marlin/src/module/stepper.cpp

+ 1
- 1
Marlin/src/module/stepper.cpp Zobrazit soubor

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

Loading…
Zrušit
Uložit