资源简介
usart实现实时接收,接收后将接收内容发回上位机
利用中断,触发标志位,从而发送内容
调用固件库里usart中的printf和interrrupt文件实现
其中配置部分较简单,函数和中断比较重要。
代码片段和文件信息
/**************************************************************************//**
* @file core_cm3.c
* @brief CMSIS Cortex-M3 Core Peripheral Access layer Source File
* @version V1.30
* @date 30. October 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (ARM) is supplying this software for use with Cortex-M
* processor based microcontrollers. This file can be freely distributed
* within development tools that are supporting such ARM based processors.
*
* @par
* THIS SOFTWARE IS PROVIDED “AS IS“. NO WARRANTIES WHETHER EXPRESS IMPLIED
* OR STATUTORY INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
* ARM SHALL NOT IN ANY CIRCUMSTANCES BE LIABLE FOR SPECIAL INCIDENTAL OR
* CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER.
*
******************************************************************************/
#include
/* define compiler specific symbols */
#if defined ( __CC_ARM )
#define __ASM __asm /*!< asm keyword for ARM Compiler */
#define __INLINE __inline /*!< inline keyword for ARM Compiler */
#elif defined ( __ICCARM__ )
#define __ASM __asm /*!< asm keyword for IAR Compiler */
#define __INLINE inline /*!< inline keyword for IAR Compiler. Only avaiable in High optimization mode! */
#elif defined ( __GNUC__ )
#define __ASM __asm /*!< asm keyword for GNU Compiler */
#define __INLINE inline /*!< inline keyword for GNU Compiler */
#elif defined ( __TASKING__ )
#define __ASM __asm /*!< asm keyword for TASKING Compiler */
#define __INLINE inline /*!< inline keyword for TASKING Compiler */
#endif
/* ################### Compiler specific Intrinsics ########################### */
#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
/* ARM armcc specific functions */
/**
* @brief Return the Process Stack Pointer
*
* @return ProcessStackPointer
*
* Return the actual process stack pointer
*/
__ASM uint32_t __get_PSP(void)
{
mrs r0 psp
bx lr
}
/**
* @brief Set the Process Stack Pointer
*
* @param topOfProcStack Process Stack Pointer
*
* Assign the value ProcessStackPointer to the MSP
* (process stack pointer) Cortex processor register
*/
__ASM void __set_PSP(uint32_t topOfProcStack)
{
msr psp r0
bx lr
}
/**
* @brief Return the Main Stack Pointer
*
* @return Main Stack Pointer
*
* Return the curren
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-08-14 20:51 USART\
目录 0 2020-08-14 20:51 USART\CORE\
文件 17273 2010-06-07 10:25 USART\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 USART\CORE\core_cm3.h
文件 12765 2011-03-10 10:52 USART\CORE\startup_stm32f10x_md.s
目录 0 2020-08-14 20:51 USART\FWLIB\
目录 0 2020-08-14 20:51 USART\FWLIB\inc\
文件 8982 2011-03-10 10:47 USART\FWLIB\inc\misc.h
文件 21690 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_adc.h
文件 7555 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_bkp.h
文件 27559 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_can.h
文件 6573 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_cec.h
文件 2162 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_crc.h
文件 15233 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_dac.h
文件 3818 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_dbgmcu.h
文件 20754 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_dma.h
文件 6824 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_exti.h
文件 25445 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_flash.h
文件 27016 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_fsmc.h
文件 20175 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_gpio.h
文件 30029 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_i2c.h
文件 3828 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_iwdg.h
文件 4383 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_pwr.h
文件 30452 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_rcc.h
文件 3857 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_rtc.h
文件 21863 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_sdio.h
文件 17725 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_spi.h
文件 52427 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_tim.h
文件 16548 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_usart.h
文件 2966 2011-03-10 10:47 USART\FWLIB\inc\stm32f10x_wwdg.h
目录 0 2020-08-14 20:51 USART\FWLIB\src\
............此处省略87个文件信息
- 上一篇:Operating System
- 下一篇:MechJeb2-2.8.1.0.zip
相关资源
- 蓝桥杯软件团体赛省级一等奖
- 蓝桥杯官网练习题和测评数据-入门训
- 蓝桥杯单片机第四届到第八届程序+题
- 第11届蓝桥杯青少赛Scratch组试题(高
- 蓝桥杯CT117E嵌入式竞赛板省赛第八届
- 蓝桥杯CT117E嵌入式竞赛板省赛第七届
- 蓝桥杯CT117E嵌入式竞赛板省赛第六届
- 蓝桥杯历届国赛题目pdf第二届到第九
- 蓝桥杯-嵌入式-模拟液位检测告警系统
- 2013年蓝桥杯第四届-模拟灌溉系统=程
- 蓝桥杯第七届决赛第一名例程
- 蓝桥杯单片机历年真题锦含二到九届
- 蓝桥杯VIP题目
- 蓝桥杯历年真题
- 蓝桥杯oj离线题库.zip
- 蓝桥杯单片机设计与开发历年真题(
- 蓝桥杯单片机省赛全历年真题已解全
- 蓝桥杯测试数据
- 蓝桥杯单片机 官方提供的数据包
- 蓝桥杯历年试题附完整测试数据和题
- 蓝桥杯官网练习题和测评数据-算法训
- CT117E蓝嵌入式资源,各个模块代码,
- 蓝桥杯VIP题目与全套测试数据
- 截至2018--蓝桥杯489道测评数据
- Dev-Cpp5.4.0 蓝桥杯大赛版本
- 蓝桥杯嵌入式keil安装视频教程
- 蓝桥杯资料超全
- 蓝桥杯 嵌入式设计与开发 考试加密资
- 蓝桥杯历届真题第九届第十届.zip
- 蓝桥杯单片机CT107D的proteus仿真
评论
共有 条评论