Other Parts Discussed in Thread: CC2340R5
Hi Team ,
- Current Consumption Issue:
- We observe even with BLE advertisement disabled, your MCU still consumes 4 mA to 6 mA of current.
- Our user task sleeps every 90 seconds, and during this time, the Hall sensor (connected via SPI) is put into sleep mode, drawing 1.2 μA as specified in the datasheet.
- Expected Behavior:
- Since BLE advertisement is disabled, we expect the BLE task to also sleep.
- Ideally, the MCU should be in standby mode during the 90-second sleep interval, drawing around 1.1 μA (as mentioned in the datasheet).
- Observations:
- However, we are noticing current pulses occurring approximately every 250 ms.
- These pulses are unexpected and seem to prevent the MCU from entering the desired low-power standby mode.
Our code flow is as below,
1. Initialization of MCU,
2. Start the BLE task
3. Start of user task
User task code flow,
1. Disable the advertisement
2. Put the Hall sensor (connected via SPI) to sleep mode ( we see 1.2uA as dictated by datasheet)
Do for ever loop
{
1. Wake up the Hall sensor
2. Do Sensor read over SPI
3. Put the Hall sensor to sleep mode
sleep(90)
}
With Regards
Ilanchezhian T