这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » DIY与开源设计 » 电子DIY » 串口实验问题,printf不出来,热心人麻烦看看(工程已经传上来,麻烦大家了)

共11条 1/2 1 2 跳转至

串口实验问题,printf不出来,热心人麻烦看看(工程已经传上来,麻烦大家了)

助工
2012-04-17 16:57:55     打赏

我的串口下载是用外接2303下载的。。
软件仿真可以实现功能,但是下载在开发板就不行了。。
不知道什么原因。。下面是代码。

#include "stm32f10x.h"
#include "stdio.h"
#include "SysTickDelay.h"


void USART1_Configuration(void);
//int fputc(int ch, FILE *f);

int main(void)
{
 SystemInit();
 SysTick_Initaize();   
    USART1_Configuration();
 while(1)
    {
  printf("EEPW ARM DIY 奋斗STM32 \r\n");
  delay_ms(100);
    }
}

/*******************************************************************************
* Function Name  : 重定义系统putchar函数int fputc(int ch, FILE *f)
* Description    : 串口发一个字节
* Input          : int ch, FILE *f
* Output         :
* Return         : int ch
* 这个是使用printf的关键
*******************************************************************************/
//int fputc(int ch, FILE *f)
//{
//    USART_SendData(USART1, (u8) ch);
//    //USART1->DR = (u8) ch;  
//    /* Loop until the end of transmission */
//    while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET)
//    {
//    }
//
//    return ch;
//}

 

void USART1_Configuration(void)
{
 GPIO_InitTypeDef GPIO_InitStructure;
    USART_InitTypeDef USART_InitStructure;
 NVIC_InitTypeDef NVIC_InitStructure;
 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO |RCC_APB2Periph_USART1, ENABLE);

     //USART1_TX
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_Init(GPIOA, &GPIO_InitStructure);
   
    //USART1_RX
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
    GPIO_Init(GPIOA, &GPIO_InitStructure);

    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_No;
    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
    USART_Init(USART1, &USART_InitStructure);
   
    USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
   
    USART_Cmd(USART1, ENABLE);

    NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
    NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&NVIC_InitStructure);
}

 

 




关键词: 串口     实验     问题     printf     出来     热心人     麻烦    

院士
2012-04-17 23:23:48     打赏
2楼
楼主的硬件初始化未见不对的地方
现在出错的情况是什么啊?

高工
2012-04-17 23:28:31     打赏
3楼
//int fputc(int ch, FILE *f)

你不会真的把这句注释掉了吧?

串口下载要握手的,应该不会是串口硬件的问题

助工
2012-04-17 23:45:27     打赏
4楼
在另一个头文件声明过了。。

高工
2012-04-18 00:37:59     打赏
5楼
在fputc里边设置个断点,看能不能进去
要么就是时钟设置有问题,比如你使用了内部时钟自己还不知道

专家
2012-04-18 08:46:53     打赏
6楼
线路连接OK么?

专家
2012-04-18 10:29:41     打赏
7楼
int fputc(int ch, FILE *f);不要屏蔽

高工
2012-04-18 12:06:06     打赏
8楼
是不是缺少函数定义及声明

助工
2012-04-18 17:18:37     打赏
9楼

可以进去,软件仿真准确,但是下载板子就不行。。


助工
2012-04-18 17:19:13     打赏
10楼

另一个头文件声明了


共11条 1/2 1 2 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]