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

Thingy91 connections between 9160 and 52840

I would like to program the 52840 with the HCI_UART sample to use it for Bluetooth scanning. I did this and lost the USB serial out.  I now understand that on the Thingy91, the '840 is used as a board controller and that serial communication is relayed from the 9160 through to the USB port.  I found the code for the UART / USB bridge and was able to restore the USB serial comm.

I would like to combine the two samples so that I can use Bluetooth, while retaining the USB serial out. The problem is parsing the serial out data vs the bluetooth commands.

I'm trying to determine the UART connections between the two chips. Are both UART0 and UART1 on the 9160 connected to the 52840 or just one?  I've scanned the schematics but the flexibility of the I/O on the chips makes it it a bit complex. A bit of help on the connectivity would save me a fair amount of reverse engineering.  Thanks.

Doug

Parents Reply Children
  • Thanks for the response. Spent the day trying to combine the USB bridge with the HCI_UART code. I was able to rebuild the original usb-bridge code and make it work. I was even able to spin that code onto a separate thread so that the primary thread could run the HCI_UART code.

    First roadblock was finding a spare pin for the needed interrupt. I decided to repurpose the UART0 CTS pin since there's no need to receive any debug data into the 9160. 

    I attempted to port the .dts and kconfig files from the 52840_PCA10090 folder to the 52840_PCA20035 board folder. In the end, the reset doesn't seem to be working correctly.

    It's sad that this very powerful bluetooth chip on the Thingy doesn't have any better example other than the usb bridge. I know it's early days, but it's a powerful chip and I'd like to take advantage of it. 

    Thanks for your help. I'll continue to work with the Thingy codebase.

  • dboling said:
    It's sad that this very powerful bluetooth chip on the Thingy doesn't have any better example other than the usb bridge. I know it's early days, but it's a powerful chip and I'd like to take advantage of it. 

     The examples, as of now, is limited, but I will ofcourse give this feedback to the R&D team working on thingy:91.

    PS: RTS/CTS can be declared as "0xFFFFFFFF" so that the uart driver interprets them as unused. Flow control isn't enabled between the two nRF's, so they can safely be used.

     

    Kind regards,

    Håkon

Related