Skip to content

Commit

Permalink
upgrade ArduinoJson
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-8 committed Dec 30, 2024
1 parent f56ce22 commit e98d44f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RCMv3/rcmv3.h
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,7 @@ class RCMv3ComponentFactory {
components.push_back(new RCMv3ComponentBSED(selectedWire, (int)data[1]));
} break;
case RC_TYPE_JEncoderBSED: {
if (data[1] < 1 || data[1] > 8) {
if ((int)data[1] < 1 || (int)data[1] > 8) {
create_component_error_msg += " encoderChannel must be between 1 and 8";
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ board_build.partitions = rcmv3_partitions.csv
board_build.filesystem = littlefs
lib_deps =
me-no-dev/ESP Async [email protected]
bblanchon/ArduinoJson@7.2.0
bblanchon/ArduinoJson@7.3.0
joshua1024/JMotor@~0.28.6
fastled/[email protected]
sparkfun/SparkFun 9DoF IMU Breakout - ICM 20948 - Arduino [email protected]
Expand Down

0 comments on commit e98d44f

Please sign in to comment.