Other Parts Discussed in Thread: CC2640R2F
Hi,
I have tried the pinShutdown example program from SDK v1.40 and it works repeatedly. I am able to read 0.08 uA Shutdown Current.
However when I call Power_shutdown() at SDK v1.40 Simple Peripheral Off-Chip OAD Example Program, It does not work. I am getting 40.8 uA Shutdown Current. What are the other requirements to enter Shutdown Mode using Simple Peripheral Off-Chip OAD Example Program.
Here are my modifications below:
1. call Power_init(); at main().
2. call Power_shutdown(0, 0); at Simple Peripheral Periodic Event
if (events & SBP_PERIODIC_EVT) { /* Go to shutdown */ Power_shutdown(0, 0); //Util_startClock(&periodicClock); // Perform periodic application task //SimpleBLEPeripheral_performPeriodicTask(); }
- kel