Skip to content

Commit

Permalink
[RA4M1] bump Renesas Core up to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lyusupov committed Jun 3, 2024
1 parent aa8de4f commit e5e1569
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ jobs:
fi
if [[ "$BOARD" =~ "arduino:renesas_uno:" ]]; then
arduino --pref "boardsmanager.additional.urls=https://downloads.arduino.cc/packages/package_index.json" --save-prefs ;
arduino --install-boards arduino:renesas_uno:1.1.0 ;
arduino --install-boards arduino:renesas_uno:1.2.0 ;
arduino --board $BOARD --save-prefs ;
wget https://github.com/arduino-libraries/ArduinoBLE/archive/refs/tags/${ARDUINO_BLE_VERSION}.tar.gz ;
tar xzf ${ARDUINO_BLE_VERSION}.tar.gz ;
Expand Down
2 changes: 1 addition & 1 deletion software/firmware/source/SoftRF/src/platform/nRF52.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ static void nRF52_setup()
hw_info.mag = MAG_AK8963;
IMU_Time_Marker = millis();
} else {
if (nRF52_has_imu && imu_2.begin() == ICM_20948_Stat_Ok) {
if (nRF52_has_imu && imu_2.begin(Wire, false) == ICM_20948_Stat_Ok) {
hw_info.imu = IMU_ICM20948;
hw_info.mag = MAG_AK09916;
IMU_Time_Marker = millis();
Expand Down
2 changes: 1 addition & 1 deletion software/firmware/source/SoftRF/src/platform/nRF52.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ struct rst_info {
#define DFU_MAGIC_SKIP (0x6d)
#define BME280_ADDRESS (0x77)
#define MPU9250_ADDRESS (0x68)
#define ICM20948_ADDRESS (0x69)
#define ICM20948_ADDRESS (0x68)

#if defined(ARDUINO_ARCH_MBED)
#define PCF8563_SLAVE_ADDRESS (0x51)
Expand Down

0 comments on commit e5e1569

Please sign in to comment.