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

nRF51 dongle compatibility to convert USB data to DB9 with UART support

We are having nRF51 dongle which is having USB compatible. But My test systems only have the option for DB9 with UART support. Is there any possible to convert nRF51 Dongle USB output to DB9 UART  ? 
Parents Reply
  • RX and TX are connected to the on-board j-link by default, and are used by most of our SDK examples to output debug messages to the PC over UART->USB. But you will need to select some other accessible pins  (p0.15-20) if you are going to have your UART output connected to a rs232 bridge.

    Default pinout from the pca10031.h board header:

    // UART connection with J-Link
    #define RX_PIN_NUMBER  11
    #define TX_PIN_NUMBER  9
    #define CTS_PIN_NUMBER 10
    #define RTS_PIN_NUMBER 8
    #define HWFC           true

Children
Related