Browse Source

[2.0.x] removed spaces

Removed spaces in array declaration
pull/1/head
GMagician 7 years ago
parent
commit
9e93b7ccbd
  1. 2
      Marlin/src/HAL/HAL_AVR/servo_AVR.cpp
  2. 2
      Marlin/src/HAL/HAL_DUE/Servo_Due.cpp

2
Marlin/src/HAL/HAL_AVR/servo_AVR.cpp

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

2
Marlin/src/HAL/HAL_DUE/Servo_Due.cpp

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

Loading…
Cancel
Save