ENABLE pin of the modem is connected to a GPIO on my MCU. However, both the main VDD and VDD_GPIO are connected directly to the main power supply (always ON). I do not have any hardware switch to cut off their power or pull them to GND.AT#XSHUTDOWN (System OFF) and AT#XSLEEP (Idle/Sleep) commands.VDD_GPIO, I would like to know the best strategy to achieve the absolute lowest power consumption:- Hardware vs. SLM Commands: Given the VDD_GPIO constraint, should I pull the
ENABLEpin LOW to turn it off (risking reverse leakage), or should I keepENABLEHIGH permanently and rely exclusively on SLM AT commands (#XSHUTDOWNor#XSLEEP) to put the modem into deep sleep? - Best Command Sequence: If keeping
ENABLEHIGH is the correct approach, which command gives the absolute lowest power consumption in my case? Is it#XSHUTDOWN, or#XSLEEP=1(perhaps sendingAT+CFUN=4beforehand to prevent NVM wear, as noted in the SLM docs)? - Wake-up from #XSHUTDOWN: The SLM documentation states that if
#XSHUTDOWNis used, the SiP cannot be woken up using theCONFIG_SLM_POWER_PIN. Since my MCU needs to wake the modem up, what is the recommended way to wake it from#XSHUTDOWNin this architecture? - Expected Current & Troubeshooting: What is the estimated floor current (in µA) I should expect with this setup? Currently, I am measuring around 11 mA even after sending the sleep commands and turning off the radio, which indicates the system is kept awake. Are there common pitfalls in the SLM app (e.g., UART RX pin keeping the CPU awake) that could cause this 11 mA draw?
