Browse Source

Fix "continuous" typo (#21701)

Keith Bennett 4 years ago
parent
commit
40d789ce18
No account linked to committer's email address

+ 1
- 1
Marlin/Configuration_adv.h View File

2842
 
2842
 
2843
   /**
2843
   /**
2844
    * Enable M122 debugging command for TMC stepper drivers.
2844
    * Enable M122 debugging command for TMC stepper drivers.
2845
-   * M122 S0/1 will enable continous reporting.
2845
+   * M122 S0/1 will enable continuous reporting.
2846
    */
2846
    */
2847
   //#define TMC_DEBUG
2847
   //#define TMC_DEBUG
2848
 
2848
 

+ 1
- 1
Marlin/src/HAL/STM32F1/MarlinSerial.cpp View File

60
   }
60
   }
61
   else if (srflags & USART_SR_ORE) {
61
   else if (srflags & USART_SR_ORE) {
62
     // overrun and empty data, just do a dummy read to clear ORE
62
     // overrun and empty data, just do a dummy read to clear ORE
63
-    // and prevent a raise condition where a continous interrupt stream (due to ORE set) occurs
63
+    // and prevent a raise condition where a continuous interrupt stream (due to ORE set) occurs
64
     // (see chapter "Overrun error" ) in STM32 reference manual
64
     // (see chapter "Overrun error" ) in STM32 reference manual
65
     regs->DR;
65
     regs->DR;
66
   }
66
   }

+ 1
- 1
Marlin/src/lcd/marlinui.cpp View File

855
     static bool wait_for_unclick; // = false
855
     static bool wait_for_unclick; // = false
856
 
856
 
857
     auto do_click = [&]{
857
     auto do_click = [&]{
858
-      wait_for_unclick = true;                        //  - Set debounce flag to ignore continous clicks
858
+      wait_for_unclick = true;                        //  - Set debounce flag to ignore continuous clicks
859
       lcd_clicked = !wait_for_user;                   //  - Keep the click if not waiting for a user-click
859
       lcd_clicked = !wait_for_user;                   //  - Keep the click if not waiting for a user-click
860
       wait_for_user = false;                          //  - Any click clears wait for user
860
       wait_for_user = false;                          //  - Any click clears wait for user
861
       quick_feedback();                               //  - Always make a click sound
861
       quick_feedback();                               //  - Always make a click sound

Loading…
Cancel
Save