This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/CC2564MODN: CC2564MODN connect to UBUNTU PC through UART

Part Number: CC2564MODN

Tool/software: TI C/C++ Compiler

Hi ,

there is someone that has test this configuration using the Bluez stack : (CC2564MODN connect to UBUNTU PC through UART)  ?

What document can I follow ?

Sergio.

  • Sergio,

    This is not a standard configuration supported in TI's software offerings. However, once you know the tty port and GPIO number of the host (connected to the nSHUTD pin of CC2564MODN), you can use the following command line inputs to initialize CC2564MODN with BlueZ.

    e.g. if the GPIO connected to nSHUTD is gpio16 and the tty port number connected to the CC2564MODN is ttyO3,
    
    echo 16 > /sys/class/gpio/export
    echo out > /sys/class/gpio/gpio16/direction
    echo 0 > /sys/class/gpio/gpio16/value
    echo 1 > /sys/class/gpio/gpio16/value
    hciattach /dev/ttyO3 texas 3000000
    
    

    While trying this, pleas also make sure the TIInit_6.7.16.bts is copied to the /lib/firmware/ti-connectivity directory of the host's file system.

    Best regards,

    Vihang