Skip to content

Commit

Permalink
Update ESP_FlexyStepper.cpp fix camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
pkerspe authored Jan 12, 2024
1 parent f8186bc commit 216b021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ESP_FlexyStepper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ bool ESP_FlexyStepper::isBrakeActive()
/**
* activate (engage) the driver (if any is configured, otherwise will do nothing)
*/
void ESP_FlexyStepper::enabledriver(void)
void ESP_FlexyStepper::enableDriver(void)
{
if (this->_isEnableConfigured)
{
Expand All @@ -428,7 +428,7 @@ if (this->_isEnableConfigured)
/**
* deactivate (release) the driver (if any is configured, otherwise will do nothing)
*/
void ESP_FlexyStepper::disabledriver(void)
void ESP_FlexyStepper::disableDriver(void)
{
if (this->_isEnableConfigured)
{
Expand Down

0 comments on commit 216b021

Please sign in to comment.