/** * @brief 串口模块配置 * @retval None */
static void App_UartCfg(void) { stc_usart_uart_init_t stcUARTInit = {0U};
SYSCTRL_PeriphClkEnable(SysctrlPeripheralUsart0); /*!< USART0 外设时钟使能 */
/*!< 结构体初始化 */ DDL_ZERO_STRUCT(stcUARTInit); stcUARTInit.u32BaudRate = 9600U; /*!< 设置波特率 */
stcUARTInit.u32SampleMode = USART_OVERSAMPLING_16; /*!< 采样模式设定 16 倍/8 倍采样: 16 位 */
stcUARTInit.u32FrameLength = USART_FRAME_LEN_8BITS; /*!< 数据帧长度 8/9bits:8bits */
stcUARTInit.u32Parity stcUARTInit.u32StopBits = USART_PARITY_NONE; = USART_STOP_1BIT;
stcUARTInit.u32TransMode = USART_MODE_TX_RX; USART_UART_Init(HC_USART0, &stcUARTInit); } 应用笔记 /*!< 奇偶校验选择:无校验 */
/*!< 停止位长度:1位 */ /*!< 数据传输方式:Tx Rx */
代理商 15013507812
|