stm32f103c8t6串口usart1实验,编译通过,下载到板子上串口调试助手没动静

2019-10-14 23:10发布

本帖最后由 lsy3500 于 2017-1-5 14:02 编辑

各位大大好,有个问题,我用的是stm32f103c8t6,从网上下载了一个 stm32f103c8t6 使用 USART1 串口打印测试程序(重定向printf函数),检查参数设置无误后编译通过,下载到板子上以后,串口调试助手却怎么也没反应,难道是硬件的问题?只是硬件问题一般比较少见,所以先跪求各位大大帮我看看软件是不是还有什么问题。这是我下载的部分主要程序,附件是源代码,跪求各位大大帮我看看非常感谢:
[mw_shl_code=c,true]int main(void)
{
/* 系统时钟设置为 72M */
SystemInit();

/* USART1 config 115200 8-N-1 */
USART1_Config();

printf(" *********This is a printf demo******** ");

printf(" * This is a USART1_printf demo * ");

USART1_printf(USART1, " * -------------------- * ");

USART1_printf(USART1, " * STM32F103C8T6 Development Board * ");
USART1_printf(USART1, " * ----------------------------------- * ");
USART1_printf(USART1, "   --------------------------------------- ");        

while (1)
{
;
}
}[/mw_shl_code]

[mw_shl_code=c,true]void USART1_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;

/* config USART1 clock */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);

/* USART1 GPIO config */
/* 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;        //íÆíìêä3ö
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);

/* USART1 mode config */
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 | USART_Mode_Tx;
USART_Init(USART1, &USART_InitStructure);
USART_Cmd(USART1, ENABLE);
[/mw_shl_code]






友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
14条回答
亮仔同学
1楼-- · 2019-10-15 02:33
讲道理 软件应该没问题,我软件仿真了下可以打印;检查下硬件管脚有没有配错。
lsy3500
2楼-- · 2019-10-15 04:56
 精彩回答 2  元偷偷看……
lsy3500
3楼-- · 2019-10-15 10:01
我顶,跪求围观啊~~
密耳
4楼-- · 2019-10-15 13:21
拿原子的程序就行,把IO改下,
密耳
5楼-- · 2019-10-15 17:28
lsy3500
6楼-- · 2019-10-15 21:43
密耳 发表于 2017-1-5 16:10
再不行,上这个。。。https://item.taobao.com/item.htm?spm=a1z10.5-c.w4002-1255750299.25.qsz1OK&id=5 ...

这是啥啊?
主要是我刚入行stm32,比较菜,串口按说很简单啊,就这几句话而已,可是串口助手还是没反应,不知道是我调试不对还是真的是硬件的问题,现在不知道该怎么排除了,啊,好心塞。。

一周热门 更多>