LPC1768 MarlinServo => libServo

This commit is contained in:
Scott Lahteine
2019-05-22 16:54:03 -05:00
parent 2b5046659a
commit a49919396a
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@
#include <Servo.h>
class MarlinServo: public Servo {
class libServo: public Servo {
public:
void move(const int value) {
constexpr uint16_t servo_delay[] = SERVO_DELAY;
@ -67,4 +67,4 @@ class MarlinServo: public Servo {
}
};
#define HAL_SERVO_LIB MarlinServo
#define HAL_SERVO_LIB libServo