资源简介
STM8L051 单片机实现串口空闲终端接收数据,并将数据回传PC机
代码片段和文件信息
/*******************************************************************************
*******************************蓝旗嵌入式系统***********************************
*************************http://lenchimcu.taobao.com****************************
********************************************************************************
****例程简介:STM8L151K4库例程工程Demo
*******************************************************************************/
#include “stm8l15x.h“
#include “main.h“
#define LED_GPIO_PORT GPIOA
#define LED_GPIO_PINS GPIO_Pin_6
#define KEY_GPIO_PORT GPIOB
#define KEY_GPIO_PINS GPIO_Pin_4
/*******************************************************************************
****入口参数:无
****出口参数:无
****函数备注:
****版权信息:蓝旗嵌入式系统
*******************************************************************************/
void Delay(__IO uint16_t nCount)
{
/* Decrement nCount value */
while (nCount != 0)
{
nCount--;
}
}
int main( void )
{
CLK_SYSCLKSourceConfig(CLK_SYSCLKSource_HSI);//切换为内部高速时钟
CLK_HSICmd(ENABLE); //使能内部高速时钟
CLK_SYSCLKDivConfig(CLK_SYSCLKDiv_1); //1分频(不分频)
CLK_PeripheralClockConfig (CLK_Peripheral_USART1ENABLE);//开启USART时钟
USART_Init(USART19600USART_WordLength_8bUSART_StopBits_1USART_Parity_NoUSART_Mode_Tx|USART_Mode_Rx);//设置USART参数9600,8N1,接收/发送
USART_ITConfig (USART1USART_IT_IDLEENABLE);//使能接收中断
USART_ITConfig (USART1USART_IT_RXNEENABLE);//使能接收中断
USART_Cmd (USART1ENABLE);//使能USART
enableInterrupts(); //使能总中断
// USART_SendData8 (USART10x31);
while(1)
{
// if(rce_idle_flag==1)
// {
// rce_idle_flag=0;
//// USART_SendData8 (USART10x38);
// for(u8 i = 0; i < 20; i++)
// {
// USART_SendData8 (USART1rcebufer[i]);
// while(!USART_GetFlagStatus (USART1USART_FLAG_TXE));
// }
// }
}
}
/*******************************************************************************
*******************************蓝旗嵌入式系统***********************************
*************************http://lenchimcu.taobao.com****************************
*******************************************************************************/
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 42497 2015-09-23 09:59 15.串口接收空闲中断\Backup (2) of Demo.ewp
文件 42497 2015-09-23 09:59 15.串口接收空闲中断\Backup of Demo.ewp
文件 3 2018-11-16 09:59 15.串口接收空闲中断\BuildLog.log
目录 0 2015-10-10 17:45 15.串口接收空闲中断\Debug\
目录 0 2019-03-25 09:20 15.串口接收空闲中断\Debug\Exe\
文件 5007 2019-03-25 09:20 15.串口接收空闲中断\Debug\Exe\APP.hex
文件 75948 2019-03-25 09:20 15.串口接收空闲中断\Debug\Exe\Demo.out
目录 0 2014-12-22 22:38 15.串口接收空闲中断\Debug\List\
目录 0 2019-03-25 09:20 15.串口接收空闲中断\Debug\Obj\
文件 872117 2019-03-25 09:20 15.串口接收空闲中断\Debug\Obj\Demo.pbd
文件 872117 2019-03-25 09:20 15.串口接收空闲中断\Debug\Obj\Demo.pbd.browse
文件 348 2019-03-25 09:20 15.串口接收空闲中断\Debug\Obj\Demo.pbd.linf
文件 7438 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\main.o
文件 608287 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\main.pbi
文件 11735 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\main.pbi.xcl
文件 58584 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\stm8l15x_clk.o
文件 625022 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\stm8l15x_clk.pbi
文件 11773 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\stm8l15x_clk.pbi.xcl
文件 56222 2019-03-25 09:20 15.串口接收空闲中断\Debug\Obj\stm8l15x_it.o
文件 646224 2019-03-25 09:20 15.串口接收空闲中断\Debug\Obj\stm8l15x_it.pbi
文件 11662 2019-03-25 09:20 15.串口接收空闲中断\Debug\Obj\stm8l15x_it.pbi.xcl
文件 58143 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\stm8l15x_usart.o
文件 624777 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\stm8l15x_usart.pbi
文件 11775 2018-11-16 09:58 15.串口接收空闲中断\Debug\Obj\stm8l15x_usart.pbi.xcl
文件 9739 2019-03-25 09:47 15.串口接收空闲中断\Demo.dep
文件 16039 2018-11-16 09:58 15.串口接收空闲中断\Demo.ewd
文件 58987 2018-11-16 09:58 15.串口接收空闲中断\Demo.ewp
文件 161023 2018-11-16 09:58 15.串口接收空闲中断\Demo.ewt
文件 158 2013-11-24 17:23 15.串口接收空闲中断\Demo.eww
文件 2373 2015-10-12 12:45 15.串口接收空闲中断\main.c
文件 137 2015-10-12 10:06 15.串口接收空闲中断\main.h
............此处省略75个文件信息
相关资源
- IAREW8051_8.20.2
- The_C_Programming_Language(英文版)
- 移植在STM8上的实时操作系统uCOS
- 额温枪STM8L方案含原理图和代码.rar
- STM8L 硬件IIC主机
- 广东工业大学题目详解含截图Anyview
- 基于单片机的多功能路灯自动控制系
- 嵌入式实时操作系统ucos原理和实践
- pdf417编码和解码
- (D)基于NTC热敏电阻的温度计.zip
- PID控制算法大全经典
- 征服C指针.pdf完整高清版
- STM8s官方固件库
- stm32f407对ds18b20温度传感器数据的采集
- STM8+NRF24l01+发送程序
- STM8+NRF24l01+接收程序
- IAR For ARM 7.8破解版 注册机
- MISRA C 2012中英文对照版本
- stm8s006超声波硬件设计电路
- stm8的485串口收发程序
- 操作系统设计与实现(第三版影印版
- STM8最强固件库
- STM8蜂鸣器音乐演奏
- IAR10.10破解文件.rar
- IAR For ARM 7.8 破解
- IAR For ARM 7.7 破解 绿色版
- vxworks下61850 MMS库源码
- IAR+for+STM8+ 破解
- 数据结构题集+答案 完全版 严蔚敏p
- C Primer Plus第六版英文原版非扫描版
评论
共有 条评论