Implementing ICM-42688-P software sensor fusion (quaternions) on nRF52832 and nRF54L15

Hello,

I am designing a device utilizing the InvenSense ICM-42688-P 6-axis IMU. We are currently targeting two SoCs for our product line: the nRF52832 and the newer nRF54L15.

Since the ICM-42688-P lacks an on-chip hardware DMP (unlike older chips like the ICM-20948), we must process the raw gyro and accelerometer data in software on the host MCU to extract clean Quaternions/Euler angles.

I have a few questions regarding implementation and optimization in the Nordic ecosystem:

1. Filter Selection & Performance: For a 6-axis setup running at a high ODR (e.g., 200Hz+), what are the performance impacts of running software filters like Madgwick or Mahony on the nRF52832 (Cortex-M4) versus the nRF54L15 (Cortex-M33)? Are there any recommended, highly optimized sensor fusion libraries natively supported or widely used within the nRF Connect SDK (NCS)?

2. 9-Axis Integration: If we supplement the ICM-42688-P with an external I2C magnetometer down the line, would a lightweight EKF (Extended Kalman Filter) run reliably on the nRF54L15 without significantly draining power or bottlenecking the BLE stack?

3. Data Acquisition Strategy: To minimize CPU wakeups, should we utilize the ICM-42688-P's internal FIFO buffer to burst-read sensor data via SPI/I2C, or is it better to stream data using pin interrupts for real-time filter feeding?

Environment Details:
* nRF52832: Running nRF Connect SDK
* nRF54L15: Running nRF Connect SDK
* Interface: SPI / I2C

Any examples, code snippets, or architecture advice for handling high-rate IMU software filtering on these SoCs would be highly appreciated.

Best regards,
Pavanreddy

Parents Reply Children
  • Hi Sebastien,

    Thank you for the suggestion.

    We looked into the ICM45689 family, but since we are targeting mass production, availability and long-term sourcing are important considerations for us. Currently, the ICM45689 does not seem to be as widely available through major distributors.

    Do you know if the ICM45689 is already in volume production and broadly available through distributors such as DigiKey, Mouser, Arrow, or Avnet?

    Also, if we stay with a 6-axis IMU, do you have any recommendations for software-based sensor fusion libraries that work well on Nordic devices?

    Best regards,
    Pavanreddy

  • ICM45689 is not yet on mass market but if you contact your local FAE, you should have access to Datasheet and SW. Same thing if you want to use hosted fusion, contact them.

    In which country you are?

    Regards,

    Sebastien

  • Hi Sebastien,

    Thanks for the clarification.

    We are based in India. Since we are targeting mass production, we generally prefer components that are already widely available through distribution channels.

    For ICM-42688-P, do you recommend any hosted fusion solution, or should we implement Madgwick/Mahony on the Nordic MCU?

    Regards,
    Pavan

Related