Skip to content

Commit

Permalink
[Bug] Fix analog joystick to mouse compilation (#15677)
Browse files Browse the repository at this point in the history
  • Loading branch information
daskygit authored Dec 31, 2021
1 parent c4551d7 commit 3b4d539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/sensors/analog_joystick.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ int16_t xOrigin, yOrigin;

uint16_t lastCursor = 0;

int16_t axisCoordinate(uint8_t pin, uint16_t origin) {
int16_t axisCoordinate(pin_t pin, uint16_t origin) {
int8_t direction;
int16_t distanceFromOrigin;
int16_t range;
Expand Down Expand Up @@ -60,7 +60,7 @@ int16_t axisCoordinate(uint8_t pin, uint16_t origin) {
}
}

int8_t axisToMouseComponent(uint8_t pin, int16_t origin, uint8_t maxSpeed) {
int8_t axisToMouseComponent(pin_t pin, int16_t origin, uint8_t maxSpeed) {
int16_t coordinate = axisCoordinate(pin, origin);
if (coordinate != 0) {
float percent = (float)coordinate / 100;
Expand Down

0 comments on commit 3b4d539

Please sign in to comment.