Does the modem turn on some functions periodically?

I am testing the power consumption of my client board, turning off all external functions and only remaining connected to the NB network.  During the test, about every 30 minutes, there is a brief and large increase in power consumption. Is the Modem performing network related operations?  During initialization, I have set the modem to PSM mode with the following parameters:  

# PSM
CONFIG_LTE_PSM_ENABLE=y
# Set Periodic-TAU timer to 10 minutes and Active-Time to 20 seconds.
CONFIG_LTE_PSM_REQ_RPTAU="10101010"
CONFIG_LTE_PSM_REQ_RAT="00001010"

It seems that the Modem does not follow this set interval for network operations. Why?  

Parents
  • Hi,

    It is hard to say anythig with certainty without seeing some logs or power profiling, but here is what I believe is what happens:

    When in PSM, the modem will sleep until either the application sends some data, or it is time for the next Periodic Tracking Area Update (TAU).

    These TAUs are necessary for the device to stay connected to the network, and to see if there is any incoming data.

    While the device can request a specific Periodic TAU interval and Active Time, it is up to the network to decide if the device is granted PSM, and for how long.

    In this case, the network has probably given you a 30 minute Periodic Tau interval, instead of the 10 minute interval requested by the device.

    You can see what values the network gives you with the +CEREG (level 5), or %XMONITOR AT commands.

    Best regards,

    Didrik

Reply
  • Hi,

    It is hard to say anythig with certainty without seeing some logs or power profiling, but here is what I believe is what happens:

    When in PSM, the modem will sleep until either the application sends some data, or it is time for the next Periodic Tracking Area Update (TAU).

    These TAUs are necessary for the device to stay connected to the network, and to see if there is any incoming data.

    While the device can request a specific Periodic TAU interval and Active Time, it is up to the network to decide if the device is granted PSM, and for how long.

    In this case, the network has probably given you a 30 minute Periodic Tau interval, instead of the 10 minute interval requested by the device.

    You can see what values the network gives you with the +CEREG (level 5), or %XMONITOR AT commands.

    Best regards,

    Didrik

Children
Related