Hi
I am working with a Nordic nrf52840dk using segge and sdk 16.
I am using the nordic UART example in examples/peripheral/uart.
The issue I am having is that my data being sent to this device can not be read from the nordic board.
Below is an example of the code going into my Putty terminal from my UART peripheral device.
This device has 4 wire connections RX,TX,CTS and RTS. My connections are listed below:
Note this is the default.
The first thing i tried was running the code with no change to see if app_uart_get(&cr) would pull this data. Unfortunately it did not. It does however, pull data that i type into the terminal.
What I want to do is to take this data from the UART(Sensor data) and store it as a variable for handling later on.
I which to know how I can pull this data from the serial connection.
Side note when the device (UART) is plugged in printing from putty does not run. If I unplug the device then printing works fine. Below is my main code (from example).