Skip to content

Commit

Permalink
add methods to class correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Unger committed Jan 9, 2024
1 parent 4934aae commit 9db53cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/base_classes/CurrentSense.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ void CurrentSense::linkDriver(BLDCDriver* _driver) {
}


void enable(){
void CurrentSense::enable(){
// nothing is done here, but you can override this function
};

void disable(){
void CurrentSense::disable(){
// nothing is done here, but you can override this function
};

0 comments on commit 9db53cd

Please sign in to comment.