打开UART0 RX功能

一、打开UART RX宏

#define UART_RX_ACTIVE_BIT_EN                           TRUE       /*!< Enable/Disable uart rx active bit set */
#if 1//(defined(CFG_DEMO_MENU))
    #define CFG_DBG_PRINT
    // Debug menu enable
    #define QN_DEMO_MENU            1
#endif

此时,编译时会有两个函数报错,需要屏蔽相关函数:

#if 1//!QN_DEMO_MENU
#define app_menu_cb(m, p)
#endif

//            app_menu_hdl();


二、在上面//app_menu_hdl(); 下面加入一行:

printf("uart receive OK\r\n");
在收到UART RX后会打印出来,收到的数据和长度分别在 ind->data, ind->len

你可能感兴趣的:(打开UART0 RX功能)