sjf4312 发表于 2011-7-13 15:48:57

stm32串口错误,发的11出来的F4,,,,帮该程序。。。。

我的程序为什么发送的是11,出来却是F4.求大侠帮忙看看。
#include "stm32f10x.h"
#include "stm32_eval.h"
#include 

USART_InitTypeDef USART_InitStructure;

void GPIO_Config(void)
{
  GPIO_InitTypeDef GPIO_InitStructure;

  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA |RCC_APB2Periph_GPIOC | RCC_APB2Periph_AFIO, ENABLE);
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); 
  
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
  GPIO_Init(GPIOC, &GPIO_InitStructure);
  
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
  GPIO_Init(GPIOA, &GPIO_InitStructure);

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

int main(void)
{
  GPIO_Config();
  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_Odd;
  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);   
  USART_ClearFlag(USART1,USART_FLAG_TC); 
  while (1)
  { 
    USART1->DR=0x11;
    while(USART_GetFlagStatus(USART1, USART_FLAG_TC)==RESET);
  }
}

#ifdef  USE_FULL_ASSERT


void assert_failed(uint8_t* file, uint32_t line)

  while (1)
  {
  }
}
#endif

 

发表于 2011-7-13 16:48:59

RE:stm32串口错误,发的11出来的F4,,,,帮该程序。。。。

1、接收串口波特率不对
2、没有转换成232电平,这个可能性大
3、串口没有交叉,这个可能性不大,因为你的串口已经收到数据
页: [1]
查看完整版本: stm32串口错误,发的11出来的F4,,,,帮该程序。。。。