Skip to content

Commit

Permalink
Fixed comment; Removed unnecessary include;
Browse files Browse the repository at this point in the history
  • Loading branch information
emielsteerneman committed Jul 1, 2023
1 parent 75e4def commit 8d84e48
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Core/Inc/peripherals/dribbler.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ float dribbler_GetMeasuredSpeeds();
float dribbler_GetFilteredSpeeds();
// Returns the delayed speed of the moving average filter at the time it got the ball
float dribbler_GetSpeedBeforeGotBall();
// Returns true if the dribbler speed decreases
// Calculates whether the dribbler has the ball or not
void dribbler_CalculateHasBall();
// Returns true if the dribbler has the ball
bool dribbler_GetHasBall();
Expand Down
1 change: 0 additions & 1 deletion Core/Src/peripherals/dribbler.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "dribbler.h"
#include "logging.h"

static const uint16_t DRIBBLER_MAX_PWM = 10000;
static const uint8_t delay_size = 4;
Expand Down

0 comments on commit 8d84e48

Please sign in to comment.