usart还是接受不了字符串,谁帮我看看程序哪里出问题啊

2019-03-23 20:29发布

简化以后的主程序如下   #include "stm32f10x_lib.h" #include "USART.h"
 ErrorStatus HSEStartUpStatus;
u8 Rxdata2[];
vu8 Rxnbr2;
GPIO_InitTypeDef GPIO_InitStructure;
void GPIO_Configuration(void)
{
    /* Configure USART1 Tx (PA.09) as alternate function push-pull */
   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
   GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
   GPIO_Init(GPIOA, &GPIO_InitStructure);
   
   /* Configure USART1 Rx (PA.10) as input floating */
   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
   GPIO_Init(GPIOA, &GPIO_InitStructure);  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
   GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
   GPIO_Init(GPIOB, &GPIO_InitStructure);    }
//系统中断管理
void NVIC_Configuration(void)
{  
     NVIC_InitTypeDef NVIC_InitStructure;
   /* Configure the NVIC Preemption Priority Bits */ 
   NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);  #ifdef  VECT_TAB_RAM 
   /* Set the Vector Table base location at 0x20000000 */
   NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0);
 #else  /* VECT_TAB_FLASH  */
   /* Set the Vector Table base location at 0x08000000 */
   NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);  
 #endif  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
 
  /* Enable the EXTI15_10 Interrupt */
  NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQChannel;
  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  NVIC_Init(&NVIC_InitStructure);
} //配置系统时钟,使能各外设时钟
void RCC_Configuration(void)
{
/* RCC system reset(for debug purpose) */
  RCC_DeInit();   /* Enable HSE */
  RCC_HSEConfig(RCC_HSE_ON);   /* Wait till HSE is ready */
  HSEStartUpStatus = RCC_WaitForHSEStartUp();   if(HSEStartUpStatus == SUCCESS)
  {
    /* HCLK = SYSCLK */
    RCC_HCLKConfig(RCC_SYSCLK_Div1);
 
    /* PCLK2 = HCLK */
    RCC_PCLK2Config(RCC_HCLK_Div1);     /* PCLK1 = HCLK/2 */
    RCC_PCLK1Config(RCC_HCLK_Div2);     /* Flash 2 wait state */
    FLASH_SetLatency(FLASH_Latency_2);
    /* Enable Prefetch Buffer */
    FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);     /* PLLCLK = 8MHz * 9 = 72 MHz */
    RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_4);     /* Enable PLL */
    RCC_PLLCmd(ENABLE);     /* Wait till PLL is ready */
    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
    {
    }     /* Select PLL as system clock source */
    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);     /* Wait till PLL is used as system clock source */
    while(RCC_GetSYSCLKSource() != 0x08)
    {
    }
  }
  
  /* Enable USART1 and GPIOA clock */
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 |RCC_APB1Periph_USART2| RCC_APB2Periph_GPIOA, ENABLE);
}   //配置所有外设
void Init_All_Periph(void)
{
 RCC_Configuration(); 
 GPIO_Configuration();
 NVIC_Configuration();
 USART1_Configuration();  USART1Write((u8*)"AT ",sizeof("AT ")) ; } void Delay(vu32 nCount)
{
  for(; nCount != 0; nCount--);
}   int main(void)
{  
  Init_All_Periph();
 
}
然后我直接将usart的接收和发送短接在一起   中断程序为 extern u8 Rxdata2[];
extern vu8 Rxnbr2;
#define   counter_max   0xff
void USART1_IRQHandler(void)
{
 if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)
 {  
  Rxdata2[Rxnbr2++] = (USART_ReceiveData(USART1));
  USART_ClearITPendingBit(USART1, USART_IT_RXNE);
  if(Rxnbr2 == counter_max|Rxdata2[Rxnbr2]=='')
    {
      /* Disable the USART2 Receive interrupt */       USART_ITConfig(USART2, USART_IT_RXNE, DISABLE);     }
   
 }
}   但是调试时接收的数据只有Rxdata2[0],也就是只能就收到A,后面的没有。紧急求助啊 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
12条回答
littlekong
1楼-- · 2019-03-24 22:11
 精彩回答 2  元偷偷看……
littlekong
2楼-- · 2019-03-24 22:53
多谢提醒,检查了下,usar1twrite写的有点问题。我改下继续调试看看
littlekong
3楼-- · 2019-03-24 23:25

原帖由 astwyg 于 2011-5-7 22:27 发表 我前阵子也在做AT命令~嘿嘿 有几个弄好的 需要的话可以交流~

你那边有没有关于如何识别gsm返回信息的程序,例如我需要查询位置一的短信,用AT+cmgr=1指令后,gsm会返回一连串的字符,诸如此类的,能借我参考下么

SF-BVC
4楼-- · 2019-03-25 00:18
 精彩回答 2  元偷偷看……
littlekong
5楼-- · 2019-03-25 05:00
原帖由 SF-BVC 于 2011-5-9 21:12 发表 建议楼主去下载一个车载GPS监控的软件看看吧,里面什么功能都有。在接收方面,你觉得你应该改进一下。 at+cmgf=1把短信转成文本模式,这样会方便你处理。
我是设定为pdu模式,应该也一样
少蚊好
6楼-- · 2019-03-25 09:10
你好,请问你编写过通信协议吗,教教我把,现在我无从下手!谢谢啦!

一周热门 更多>