Strip trailing spaces
This commit is contained in:
@ -39,7 +39,7 @@ int8_t libServo::attach(const int pin, const int min, const int max) {
|
||||
|
||||
void libServo::move(const int value) {
|
||||
constexpr uint16_t servo_delay[] = SERVO_DELAY;
|
||||
static_assert(COUNT(servo_delay) == NUM_SERVOS, "SERVO_DELAY must be an array NUM_SERVOS long.");
|
||||
static_assert(COUNT(servo_delay) == NUM_SERVOS, "SERVO_DELAY must be an array NUM_SERVOS long.");
|
||||
if (this->attach(0) >= 0) {
|
||||
this->write(value);
|
||||
safe_delay(servo_delay[this->servoIndex]);
|
||||
|
@ -14,7 +14,7 @@
|
||||
#elif defined(__STM32F1__) || defined(TARGET_STM32F1)
|
||||
#define HAL_PLATFORM HAL_STM32F1
|
||||
#elif defined(STM32F4)
|
||||
#define HAL_PLATFORM HAL_STM32F4
|
||||
#define HAL_PLATFORM HAL_STM32F4
|
||||
#elif defined(STM32F7)
|
||||
#define HAL_PLATFORM HAL_STM32F7
|
||||
#else
|
||||
|
Reference in New Issue
Block a user