瀏覽代碼

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

Tanguy Pruvot 5 年之前
父節點
當前提交
7da63fa03f
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      Marlin/src/module/stepper.cpp

+ 1
- 1
Marlin/src/module/stepper.cpp 查看文件

@@ -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…
取消
儲存