Browse Source

[2.0.x] removed spaces

Removed spaces in array declaration
GMagician 6 years ago
parent
commit
9e93b7ccbd
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/src/HAL/HAL_AVR/servo_AVR.cpp
  2. 1
    1
      Marlin/src/HAL/HAL_DUE/Servo_Due.cpp

+ 1
- 1
Marlin/src/HAL/HAL_AVR/servo_AVR.cpp View File

63
 #include "../servo.h"
63
 #include "../servo.h"
64
 #include "../servo_private.h"
64
 #include "../servo_private.h"
65
 
65
 
66
-static volatile int8_t Channel[_Nbr_16timers ];             // counter for the servo being pulsed for each timer (or -1 if refresh interval)
66
+static volatile int8_t Channel[_Nbr_16timers];              // counter for the servo being pulsed for each timer (or -1 if refresh interval)
67
 
67
 
68
 
68
 
69
 /************ static functions common to all instances ***********************/
69
 /************ static functions common to all instances ***********************/

+ 1
- 1
Marlin/src/HAL/HAL_DUE/Servo_Due.cpp View File

48
 #include "../servo.h"
48
 #include "../servo.h"
49
 #include "../servo_private.h"
49
 #include "../servo_private.h"
50
 
50
 
51
-static volatile int8_t Channel[_Nbr_16timers ];             // counter for the servo being pulsed for each timer (or -1 if refresh interval)
51
+static volatile int8_t Channel[_Nbr_16timers];              // counter for the servo being pulsed for each timer (or -1 if refresh interval)
52
 
52
 
53
 //------------------------------------------------------------------------------
53
 //------------------------------------------------------------------------------
54
 /// Interrupt handler for the TC0 channel 1.
54
 /// Interrupt handler for the TC0 channel 1.

Loading…
Cancel
Save