This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Using Sim card and UART simultaneously on nRF9160dk

Hello,

On nordic nRF9160dk I want to send SMS and receive the data from UART simultaneously. UART needs 3V VDD supply and for Sim card it is 1.8V. So how this condition can be fulfilled at the same time? For now I am using 3V VDD GPIO supply and both are working. But for sim card it is better to use 1.8V, so what is the solution for this?

Thanks,

Jagruti

Parents
  • Hi,

     

    The SIM card is powered from the nRF9160, and it is supplied with a 1.8V source regardless of what the VDD_GPIO is set to.

    The SIM_* pins are dedicated to SIM communication, and cannot be reconfigured for other purposes.

    When you are sending and receiving any type of data over the network (SMS, IP, etc), this is not going through your SIM at all. The SIM is used to authenticate you on the network itself, and after that is done, you send data, like SMS or IP data, using the CPU in the microcontroller.

    Sending or receiving data over IP or SMS is therefore not directly coupled with the UART, meaning that you should be able to do both (provided that the CPU is not busy).

     

    Kind regards,

    Håkon

Reply
  • Hi,

     

    The SIM card is powered from the nRF9160, and it is supplied with a 1.8V source regardless of what the VDD_GPIO is set to.

    The SIM_* pins are dedicated to SIM communication, and cannot be reconfigured for other purposes.

    When you are sending and receiving any type of data over the network (SMS, IP, etc), this is not going through your SIM at all. The SIM is used to authenticate you on the network itself, and after that is done, you send data, like SMS or IP data, using the CPU in the microcontroller.

    Sending or receiving data over IP or SMS is therefore not directly coupled with the UART, meaning that you should be able to do both (provided that the CPU is not busy).

     

    Kind regards,

    Håkon

Children
Related