소스 검색

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…
취소
저장