Simon's and Max' camera steering software.
https://stiefel.tech
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
257 B
11 lines
257 B
#include<include/stepper.h>
|
|
namespace simon {
|
|
namespace stepper {
|
|
c_stepper::c_stepper(const settings_t* const stepper_set,
|
|
a4988::a4988_settings_t* a4988_set)
|
|
: m_set(stepper_set), m_a4988(a4988_set)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|