6639|1

63

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

STM32F107串口1和串口2通信 [复制链接]

STM32F107串口1和串口2通信 串口2发送数据,串口1接收数据,为什么串口1接收到的数据只有第一个字节???
#include "stm32f10x.h"
#include "stm32_eval.h"
#include <stdio.h>

/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Constants used by Serial Command Line Mode */
#define CMD_STRING_SIZE       128
USART_InitTypeDef USART_InitStructure;
void GetInputString (uint8_t * buffP);
uint8_t GetKey(void);
uint32_t SerialKeyPressed(uint8_t *key);
void SerialPutChar(uint8_t c); 
void USART_Configuration(void);
void Put_String(u8 *p);
int main(void)
{
  uint8_t inputstr[CMD_STRING_SIZE]; 
 
u8 str[]={"1234abcd1234"};
USART_Configuration();

 // Put_String(inputstr); 
  while (1)
  {  Put_String(str); 
     GetInputString(inputstr);
  }
}

void USART_Configuration(void)
{   USART_InitStructure.USART_BaudRate = 115200;  //串口2
  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;

  /* 完成串口时钟配置、GPIO配置、根据上述参数初始化并使能串口 */
  STM_EVAL_COMInit(COM1, &USART_InitStructure);  //串口1
  USART_InitStructure.USART_BaudRate = 115200;
  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_Rx;
  STM_EVAL_COMInit(COM2, &USART_InitStructure);
}
void GetInputString (uint8_t * buffP)
{
  u32 bytes_read = 0;
  u8 c = 0;
  
  do
  {
    c = GetKey();
    if (bytes_read >= (CMD_STRING_SIZE))
    {
      bytes_read = 0;
     // continue;
break;
    }
    if (c >= 0x20 && c <= 0x7E)
    {
      buffP[bytes_read++] = c;   
    }
  }
  while (c!='\0');
  buffP[bytes_read] = '\0';

/**************************************************/ 
void Put_String(u8 *p) //USART2发送字符串
while(*p) 
    USART_SendData(USART2, *p++); 
    while(USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET) 
    {
}

u32 SerialKeyPressed(u8 *key)  //USART1接收数据
{


  if ( USART_GetFlagStatus(EVAL_COM2, USART_FLAG_RXNE) != RESET)
  {
    *key = (u8)EVAL_COM2->DR & 0xFF;
    return 1;
  }
  else
  {
    return 0;
  }
}

/**
  * @brief  Wait untill Get a key from the HyperTerminal
  * @param  None
  * @retval The Key Pressed
  */
u8 GetKey(void)   //接收数据
{
  u8 key = 0;

  /* Waiting for user input */
  while (1)
  {
    if (SerialKeyPressed((u8*)&key)) break;
  }
  return key;
}
#ifdef  USE_FULL_ASSERT
void assert_failed(u8* file, u32 line)
  while (1)
  {
  }
}
#endif

此帖出自stm32/stm8论坛

最新回复

我的串口都发不了。。。  详情 回复 发表于 2012-7-15 15:02
点赞 关注
 

回复
举报

3471

帖子

11

TA的资源

五彩晶圆(高级)

沙发
 
我的串口都发不了。。。
此帖出自stm32/stm8论坛
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表