先来个广告
STM32学习四 串口函数//1.keil添加公共文件Retarget.c 文件功能:使用文件流指向串口发送接受函数,可使用标准的printf等函数直接打印串口数据//.串口配置可在STM32_Init.c中配置,配置如下: //2.demo函数使用数据结构struct buf_st
{
unsigned int in; // Next In Index
unsigned int out; // Next Out Index
char buf [RBUF_SIZE]; // Buffer
};
来管理串口的接受和发送数据,可使串口不占用cpu时间//3.主函数完成功能,打印发送到串口的数据while(1)
{
GPIO_WriteBit(GPIOC,GPIO_Pin_9, (BitAction)GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_0)); //中断接受数据 RxBuf = GetKey();
if( RxBuf >= 0 )
{
SendChar( RxBuf );
}
}
//源文件有串口函数中文注释说明Keil for arm源文件。
用户1494767 2009-9-20 22:52
用户213184 2009-7-24 17:53
用户1494767 2009-5-6 23:11
tengjingshu_112148725 2009-5-6 08:54