求助! STM32 串口调试助手问题!

2019-07-14 19:16发布

写一个usart串口小程序,如下。编译成功,下载到STM32107vc芯片的板子后, 打开串口调试助手没有任何输出,求分析原因
#include "stm32f10x.h"
#include <stdio.h>
void RCC_Configuration(void);
void GPIO_Configuration(void);
void USART_Configuration(void);
void delay(__IO uint32_t nCount)
{
  for (; nCount != 0; nCount--);
}


int main(void)
{
        u8 i;
        u8 t[]={"welcome to be here"};
        RCC_Configuration(); GPIO_Configuration();
        USART_Configuration();
while(1)       
{
for(i=0;i<18;i++)
        {
                USART_SendData(USART2,t);
                printf("hdfjhsodjojdos");
                delay(80000);
        }
}
}
void RCC_Configuration(void)
{

        /* 使能LED对应GPIO的Clock时钟 *///---打开相应外设时钟-------
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);  
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);       
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);       
}
void USART_Configuration()
{
        USART_InitTypeDef USART_InitStructure;
        USART_InitStructure.USART_BaudRate = 9600;
        USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
        USART_InitStructure.USART_StopBits = USART_StopBits_1;
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;
        USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
        USART_InitStructure.USART_Parity = USART_Parity_No;
        USART_Init(USART1,&USART_InitStructure);
        USART_Cmd(USART1,ENABLE);
}
void GPIO_Configuration()
{
        GPIO_InitTypeDef GPIO_InitStructure;
       
        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);

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


1505991127(1).png
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
10条回答
Mr_RMS
1楼-- · 2019-07-16 02:26
人中狼 发表于 2017-9-23 19:08
端口号是USART1,则是肯定的,至少程序和原理图都是这样的,程序应该没问题,那么就要看串口调试助手的设置对不对了

设置是指奇偶校验波特率停止位那些么?
人中狼
2楼-- · 2019-07-16 03:45
 精彩回答 2  元偷偷看……
Mr_RMS
3楼-- · 2019-07-16 04:15
人中狼 发表于 2017-9-23 19:41
是的,还有显示方式,如十六进制或ASCII,十六进制可以显示所有发送的字节,ASCII码方式有的是数值代表控制符,会显示不出来的

都调试好了 不管用。。。
Mr_RMS
4楼-- · 2019-07-16 06:49
人中狼 发表于 2017-9-24 13:51
电路里的JP3和JP5跳线有没有设置对,我用的是stm32f103,和你的设置都一样,只是比你的多一个串口中断的设置,其他都一样,我的没有问题。
另外的区别就是发送数据前你没有查发送状态位void USART1_Send_Byte(u8 Data)
{

好的 我试试,也可能是硬件的问题

一周热门 更多>