I'm working on a custom board that uses the CC1352. I am currently trying to measure the shutdown current draw, so for testing I am simply calling Power_shutdown(0,0); early in the code, as soon as everything is initialized. The board is powered by 2x AA batteries and to measure the current draw I putting a DMM in series. When in shutdown mode I am measuring a current of 6mA while the datasheet has a shutdown current of 150nA.
I don't expect to see a current as low as 150nA as there is more on the board than just the CC1352, however, there is not nearly enough to account for 6mA of current draw. It has the same external flash chip as the launchpad dev kit, as well as a couple of voltage regulators and op-amps, and everything else is a passive part. My understanding is that all that needs to be done to enter the shutdown mode is call: Power_shutdown(0,0); Is there something more that I'm missing that needs to be done to put the CC1352 into shutdown mode?