Skip to content
Snippets Groups Projects
Commit 215eee4f authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Use 'friend' to access set_directions

parent ff51e732
Branches
Tags
No related merge requests found
...@@ -466,10 +466,14 @@ class Stepper { ...@@ -466,10 +466,14 @@ class Stepper {
#endif #endif
} }
private:
// Set direction bits for all steppers // Set direction bits for all steppers
static void set_directions(); static void set_directions();
private: // Allow reset_stepper_drivers to access private set_directions
friend void reset_stepper_drivers();
// Set the current position in steps // Set the current position in steps
static void _set_position(const int32_t &a, const int32_t &b, const int32_t &c, const int32_t &e); static void _set_position(const int32_t &a, const int32_t &b, const int32_t &c, const int32_t &e);
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment