Skip to content

Commit

Permalink
Merge pull request #111 from strykeforce/WestMichFix
Browse files Browse the repository at this point in the history
West mich fix
  • Loading branch information
mwitcpalek authored Mar 26, 2024
2 parents 2f583f6 + f12420f commit 3eb3f4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "org.strykeforce"
version = "24.0.4"
version = "24.0.5"

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/strykeforce/gyro/SF_AHRS.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public SF_AHRS(SPI.Port spi_port_id, byte update_rate_hz) {
}

public SF_AHRS(SPI.Port spi_port_id, int spi_bitrate, byte update_rate_hz) {
ahrs = new SF_AHRS(spi_port_id, spi_bitrate, update_rate_hz);
ahrs = new AHRS(spi_port_id, spi_bitrate, update_rate_hz);
}

public SF_AHRS(I2C.Port i2c_port_id, byte update_rate_hz) {
Expand Down

0 comments on commit 3eb3f4b

Please sign in to comment.