野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 8481|回复: 1

uart的问题

[复制链接]
发表于 2018-1-15 21:15:38 | 显示全部楼层 |阅读模式
    有没有大神能看看下面的uart的怎么错了呢?我对着书里的打代码了,但串口按复位键什么也没显示。谢谢,谢谢。真头疼。
    void UART_Conf(void)
{
        USART_InitTypeDef  USART_InitStruct;  
        GPIO_InitTypeDef   GPIO_InitStruct;
       
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO|RCC_APB2Periph_USART1,ENABLE);
       
        GPIO_InitStruct.GPIO_Mode=GPIO_Mode_AF_PP;
        GPIO_InitStruct.GPIO_Pin=GPIO_Pin_9;
        GPIO_InitStruct.GPIO_Speed=GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStruct);       
               
        GPIO_InitStruct.GPIO_Mode=GPIO_Mode_IN_FLOATING;
        GPIO_InitStruct.GPIO_Pin=GPIO_Pin_10;
        GPIO_InitStruct.GPIO_Speed=GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStruct);
       
        USART_InitStruct.USART_BaudRate = BUADRATE;
        USART_InitStruct.USART_HardwareFlowControl= USART_HardwareFlowControl_None;
        USART_InitStruct.USART_Mode =USART_Mode_Tx|USART_Mode_Rx  ;
        USART_InitStruct.USART_Parity =USART_Parity_No;
        USART_InitStruct.USART_StopBits =USART_StopBits_1;
        USART_InitStruct.USART_WordLength =USART_WordLength_8b;
       
  USART_Init(USART1, &USART_InitStruct);
        NVIC_Configuration();
        USART_Cmd(USART1, ENABLE);
       
}

void Usart_SendByte( USART_TypeDef * pUSARTx, uint8_t ch)
{
/* 发送一个字节数据到 USART */
USART_SendData(pUSARTx,ch);

/* 等待发送数据寄存器为空 */
while (USART_GetFlagStatus(pUSARTx, USART_FLAG_TXE) == RESET);
}

回复

使用道具 举报

发表于 2018-1-16 08:46:16 | 显示全部楼层
fput重定向函数还没写
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2025-1-10 01:33 , Processed in 0.026835 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表