[求助] 我的usart 串口 使用串口助手 收不到数据

乱起东城   2011-9-17 08:35 楼主
配置如下
        GPIO_InitStructure.GPIO_Pin   = GPIO_Pin_11;
        GPIO_InitStructure.GPIO_Mode  = GPIO_Mode_IPD;                                                                         //上拉输入
        GPIO_Init(GPIOB, &GPIO_InitStructure);

        GPIO_InitStructure.GPIO_Pin   = GPIO_Pin_10;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_InitStructure.GPIO_Mode  = GPIO_Mode_AF_PP;                                                               // 复用推挽输出
        GPIO_Init(GPIOB, &GPIO_InitStructure);

        // 串口通信参数配置
        USART_InitStructure.USART_BaudRate            = USART3_BAUDRATE;                                // 波特率
        USART_InitStructure.USART_WordLength          = USART_WordLength_8b;                // 数据位数8位
        USART_InitStructure.USART_StopBits            = USART_StopBits_1;                        // 停止位
        USART_InitStructure.USART_Parity              = USART_Parity_No;                            // 无奇偶校验
        USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;        // 无硬件控制流
        USART_InitStructure.USART_Mode                = USART_Mode_Rx | USART_Mode_Tx;  
其中中断什么都进得去
我在中断中只执行一句话
USART_SendData(USARTx,0x26 /*data*/);

回复评论 (3)

参考官方的代码例子,那个是没有问题的。
这个似乎不对劲:  USART_SendData(USARTx,0x26 /*data*/);

[ 本帖最后由 ly_hell 于 2011-9-17 17:22 编辑 ]
点赞  2011-9-17 17:21
USART_SendData(USARTx,0x26 /*data*/)
其中 usartx=USART1|USART2|USART3
就是 在调用的时候
利用指针
赋值了
点赞  2011-9-18 08:43

你可以参照下我的程序

void UART1Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;

RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);

USART_InitStructure.USART_BaudRate = 9600;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
USART_Init(USART1, &USART_InitStructure);

USART_Cmd(USART1, ENABLE);
}




void UART1SendByte(unsigned char SendData)
{
USART_SendData(USART1,SendData);
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);

}
STM32 开发板  带CAN  RS485 接口 http://shop66177872.taobao.com
点赞  2011-9-19 17:39
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复