Skip to content

Commit da8e36d

Browse files
committed
Delete not-implemented function prototypes.
1 parent 1e0f5cd commit da8e36d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/lib/motors/SmartServo.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ class SmartServoClass
6565

6666
bool isEngaged(uint8_t const id);
6767

68-
void printTimestamps();
69-
7068
void getInfo(Stream & stream, uint8_t const id);
7169

7270
inline void onErrorCb(mbed::Callback<void()> onError) { _onError = onError; }
@@ -100,7 +98,6 @@ class SmartServoClass
10098
int readWordCmd (uint8_t const id, uint8_t const address);
10199
int readByteCmd (uint8_t const id, uint8_t const address);
102100
void action (uint8_t const id);
103-
void writeSyncCmd (uint8_t *id, uint8_t const num, uint8_t const address, uint8_t const len, uint8_t const * data);
104101

105102
inline uint16_t angleToPosition(float const angle) { return (angle*MAX_POSITION)/MAX_ANGLE; }
106103
inline float positionToAngle(uint16_t const position) { return (MAX_ANGLE*position)/MAX_POSITION; }

0 commit comments

Comments
 (0)