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

UART to Peripheral

Hello, we want to establish a UART communication between the Dynastream N548M8CB Module and a TI Mikrocontroller. I have tested the UART loopback example with the pca10028 board. It worked fine. How can I adapt the code for pca10028 to the N548M8CB module? Is it possible to use the "DM_LOG(" funktion?

Parents
  • Hi Sko,

    In the example you mentioned can you comment out this below line

    #define ENABLE_LOOPBACK_TEST
    

    and see if that test compiles and works fine for you. You do not need to connect UART TX and RX if you are not running this example as a loopback. Instead you need to open a serial emulator on your PC to test it. If it still works then APP_LOG should be enough for you

    #define APPL_LOG                        app_trace_log 
    
Reply
  • Hi Sko,

    In the example you mentioned can you comment out this below line

    #define ENABLE_LOOPBACK_TEST
    

    and see if that test compiles and works fine for you. You do not need to connect UART TX and RX if you are not running this example as a loopback. Instead you need to open a serial emulator on your PC to test it. If it still works then APP_LOG should be enough for you

    #define APPL_LOG                        app_trace_log 
    
Children
Related