|
#include "tmc2130.h"
|
|
|
|
namespace hal {
|
|
namespace tmc2130 {
|
|
|
|
TMC2130::TMC2130(const MotorParams ¶ms,
|
|
const MotorCurrents ¤ts,
|
|
MotorMode mode) {
|
|
// TODO
|
|
}
|
|
|
|
void TMC2130::SetMode(MotorMode mode) {
|
|
// TODO
|
|
}
|
|
|
|
} // namespace tmc2130
|
|
} // namespace hal
|