Conexio Documentation
  • Welcome to the Conexio Platform Guides
  • Getting Started with Conexio Stratus
    • Stratus Pro nRF9151 Overview
      • Stratus Pro nRF9151 Pin Diagram
    • Stratus Pro nRF9161 Overview
      • Stratus Pro nRF9161 Pin Diagram
    • Stratus nRF9160 (Gen 1) Overview
      • Stratus nRF9160 Pin Diagram
    • Build Environment Setup
      • nRF Connect SDK (NCS) Installation
      • newtmgr Setup
    • Building and Programming an Application
      • Fetch Conexio Firmware SDK and Board Definition Files
      • Compiling Applications with nRF Connect Extension for VS Code
      • Building and Programming an Application using CLI and west
    • Sample Applications
      • Datacake
      • Golioth
      • Memfault
      • Machine Learning with Edge Impulse
    • Stratus Pro Power Analysis
    • nRF91 Modem Firmware (MFW)
    • nRF Connect LTE Link Monitor
    • Connectivity
    • Regulatory & Compliance
    • Expansion Dock
    • Purchase Stratus Kit
    • Support
Powered by GitBook
On this page

Was this helpful?

  1. Getting Started with Conexio Stratus

Stratus Pro Power Analysis

PreviousMachine Learning with Edge ImpulseNextnRF91 Modem Firmware (MFW)

Last updated 1 month ago

Was this helpful?

Lower power design is critical for battery-powered IoT devices, ensuring long operational lifetimes without frequent maintenance or recharging. At Conexio, we have meticulously engineered the Stratus Pro with ultra-low-power hardware, leveraging efficient power regulators, optimized RF circuitry, and intelligent component selection. Our firmware is designed to maximize energy efficiency by implementing aggressive power management strategies, dynamic duty cycling, and deep sleep states.

As a result, the Stratus Pro achieves an industry-leading <10µA power consumption in active sleep mode—one of the best in the market. This seamless integration of hardware and firmware innovations enables our device to operate for years on a single charge, making it ideal for remote and industrial IoT applications where power efficiency is paramount.

Low Power Mode

The demonstrates how to put the Stratus Pro in the active low power mode and measure the device current consumption using the Nordic's Power Profiler Kit II.

This application also demonstrates the low power hardware design of the entire cellular kit while constantly powered by the nPM1300 PMIC, without having to shut nPM1300 down or put it into shipment mode.

Some of the main firmware components that allow to put the nRF91 into low power state are:

  • disabling the serial and logs in the prj.conf

CONFIG_SERIAL=n
CONFIG_LOG=n
  • disabling the UART receiver in the platform device tree.

 &uart0 {
	status = "okay";
	/delete-property/ rx-pin;
};
low power mode sample application