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

Thingy:91 nRF52840 board controller software.

Hi,

I would like to add some custom sensor for Thingy:91 board. I notice that there are no GPIOs available to connect sensor to nRF9160 SiP? So do I need to connect the custom sensor to nRF52840 ? connector P6?

If that is the case, can I find the current nRF52840 board controller source code somewhere? Or is there any template code that I could use?

Best Regards

Juha

Parents Reply
  • It does sound like you're going into the wrong direction here.

    In order to connect a peripheral and get the communication to the nRF91 using your proposed method, it'll have to go through 2 transport layers and adding handling on 2 MCUs (I2C -> NRF52 -> UART -> NRF9160). That is not a recommended approach.

    I would strongly recommend obtaining a nRF9160-DK, where you can access the nRF9160 GPIOs directly.

     

    Kind regards

    Håkon

Children
  • I have already made a project for nRF9160 DK which I use for demo purpose. It's working great. I just wanted to use the Thingy:91 because of the board size. Basically it's enough for me to just initialize the sensor over the I2C. After that I need to have two GPIO lines between nrf52840 and nRF9160, just signal some states detected by the sensor. I have now added my sensor and I2C driver to the project. I'm also trying to trace the nRF52840 but not getting any prints out (USB UART)?

    Are there any free GPIO lines between the nRF52840 => nRF9160 that I could use? If not then I will use the DK board.

    Best Regards

    Juha

  • Juha said:

    I have already made a project for nRF9160 DK which I use for demo purpose. It's working great. I just wanted to use the Thingy:91 because of the board size. Basically it's enough for me to just initialize the sensor over the I2C. After that I need to have two GPIO lines between nrf52840 and nRF9160, just signal some states detected by the sensor. I have now added my sensor and I2C driver to the project. I'm also trying to trace the nRF52840 but not getting any prints out (USB UART)?

    Are there any free GPIO lines between the nRF52840 => nRF9160 that I could use? If not then I will use the DK board.

     

    You can reuse the CTS and RTS lines (IF2+3 and IF6+7), as they're not used by the nRF52 or the nRF9160, but they are however configured as input and output by the UART driver, so I'd recommend setting the CTS and RTS like this in your overlay file:

    &uartX {
    status = "ok";
    rts-pin = <0xFFFFFFFF>;
    cts-pin = <0xFFFFFFFF>;
    };

     

    Other GPIOs are also discussed in this specific reply:

    https://devzone.nordicsemi.com/f/nordic-q-a/51355/inputs-via-gpio-on-the-thingy-91/214080#214080

     

    Kind regards,

    Håkon

Related