Serial LTE Modem app in NCS main - glitch on TX after RESET

Hi, 

NCS main, nRF9160 DK

git log -n 1 --oneline
4f916da03 (HEAD -> main, origin/main, origin/HEAD) west.yml: rebase OSS trees

SLM prj.conf changes:
CONFIG_SLM_START_SLEEP=y
CONFIG_SLM_WAKEUP_PIN=6
CONFIG_SLM_INDICATE_PIN=2
CONFIG_NRF_MODEM_LIB_TRACE_ENABLED=y
There is unwanted glitch on AT UART TX just after RESET.
Parents
  • Hi,

     

    This is normal.

    After a reset, all GPIOs are in reset-state, meaning that the pins will float.

    What you're seeing is the time from CPU starts executing the first instruction, to the time it takes before the NRF_UARTE peripheral is configured.

     

    To avoid this, I would recommend to consider using an external pull-up on the line(s) in question.

     

    Kind regards,

    Håkon

Reply
  • Hi,

     

    This is normal.

    After a reset, all GPIOs are in reset-state, meaning that the pins will float.

    What you're seeing is the time from CPU starts executing the first instruction, to the time it takes before the NRF_UARTE peripheral is configured.

     

    To avoid this, I would recommend to consider using an external pull-up on the line(s) in question.

     

    Kind regards,

    Håkon

Children
Related