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

How do I configure UART? Send data from nRF52832 to QUECTEL module by using "ZEPHYR" SDK?

Hi all,

       I am using nRF82532 board. This board TX,RX(P0.06,p.0.08) pins connected with QUECTEL module in ZEPHYR sdk platform . Please forgive me for these basic doubts. 

   1. If I need to send some command from my nRF52832 board to QUECTEL module through UART, how can I make communication through UART?

   2.How do I configure UART using ZEPHYR API's?

Parents Reply
  • 1. Generate hello world example: zephyr/samples/hello_world

    2. edit main.c file. It shall look like that:

    /*                                                                                                                      
      * Copyright (c) 2012-2014 Wind River Systems, Inc.                                                                     
      *                                                                                                                      
      * SPDX-License-Identifier: Apache-2.0                                                                                  
      */                                                                                                                     
                                                                                                                             
     #include <zephyr.h>                                                                                                     
     #include <misc/printk.h>                                                                                                
     #include <uart.h>                                                                                                       
                                                                                                                             
     void main(void)                                                                                                         
     {                                                                                                                       
             struct device *dev =                                                                                            
                     device_get_binding(DT_UART_CONSOLE_ON_DEV_NAME);                                                        
             printk("Hello World! %s\n", CONFIG_BOARD);                                                                      
                                                                                                                             
             uart_poll_out(dev, 'A'); // this is how you poll out raw data via uart                                          
                                                                                                                             
     }             

Children
Related