资源简介
STM32使用串口中断接收字符串,可重复接收,使用\r\n作为接收结束的标志,可以根据需要自定义结束的标志
代码片段和文件信息
/**************************************************************************//**
* @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 2019-11-05 21:55 STM32使用串口中断接收字符串\
目录 0 2019-11-05 21:55 STM32使用串口中断接收字符串\CORE\
文件 17273 2010-06-07 10:25 STM32使用串口中断接收字符串\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 STM32使用串口中断接收字符串\CORE\core_cm3.h
文件 15503 2011-03-10 10:52 STM32使用串口中断接收字符串\CORE\startup_stm32f10x_hd.s
目录 0 2019-11-05 21:55 STM32使用串口中断接收字符串\HARDWARE\
目录 0 2019-11-05 21:55 STM32使用串口中断接收字符串\HARDWARE\LED\
文件 1299 2015-03-23 22:25 STM32使用串口中断接收字符串\HARDWARE\LED\led.c
文件 638 2015-03-23 22:26 STM32使用串口中断接收字符串\HARDWARE\LED\led.h
文件 399 2011-04-23 10:24 STM32使用串口中断接收字符串\keilkilll.bat
目录 0 2019-11-06 11:23 STM32使用串口中断接收字符串\OBJ\
文件 3940 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\core_cm3.crf
文件 102 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\core_cm3.d
文件 11184 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\core_cm3.o
文件 349953 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\delay.crf
文件 1667 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\delay.d
文件 385496 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\delay.o
文件 283924 2019-11-06 11:23 STM32使用串口中断接收字符串\OBJ\LED.axf
文件 1378 2019-11-06 11:23 STM32使用串口中断接收字符串\OBJ\LED.build_log.htm
文件 349500 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\led.crf
文件 1599 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\led.d
文件 9657 2019-11-06 11:23 STM32使用串口中断接收字符串\OBJ\LED.hex
文件 48670 2019-11-06 11:23 STM32使用串口中断接收字符串\OBJ\LED.htm
文件 622 2019-11-06 11:23 STM32使用串口中断接收字符串\OBJ\LED.lnp
文件 382220 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\led.o
文件 26135 2019-11-06 11:23 STM32使用串口中断接收字符串\OBJ\LED_LED.dep
文件 355813 2019-11-05 23:35 STM32使用串口中断接收字符串\OBJ\main.crf
文件 1751 2019-11-05 23:35 STM32使用串口中断接收字符串\OBJ\main.d
文件 387956 2019-11-05 23:35 STM32使用串口中断接收字符串\OBJ\main.o
文件 348898 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\misc.crf
文件 1611 2019-11-05 22:20 STM32使用串口中断接收字符串\OBJ\misc.d
............此处省略103个文件信息
- 上一篇:geekos project4
- 下一篇:您需要了解的9篇深度学习论文.pdf
相关资源
- 虚拟串口破解版 VirtualSerialPortDriver8
- AS608指纹识别系统课程设计
- 数字电位器ad5160
- 24位高精度ad cs5532 程序代码 stm32 已调
- STM32双极性SPWM程序代码
- STM32 5路ad采集 串口输出
- 基于STM32的自动喂养机控制系统.pdf
- 电子-库函数版本适合战舰V3和精英S
- 基于STM32和ET1100的无刷直流电机控制器
- 基于stm32f1系列的直流电机调速
- hmc5883l在stm32上的应用
- STM32F103C8T6+OLED
- STM32F030工程模板
- STM32F303x固件库工程模板
- STM32F7和 STM32H7 的完整编程指南
- STM32F103的4轴步进电机加减速控制工程
- 电脑端串口调试助手&手机端网络调试
- RGB565格式转BMP
- stm32F429中文数据手册279362
- stm32f4+w5500+tcpclient/server源码
- LORA完成.rar
- 水墨屏资料
- protues元器件名称
- STM32之ADC+DMA传输定时器触发
- 基于SM32F103C8T6的环境传感器
- STM32F103C8T6+DHT11+SGP30+CH340+ADC
- STM32F103C8T6+DHT11+OLED
- STM32实现LCD中显示当前ADC转换值
- 基于STM32的DHT11的温湿度采集GSM报警系
- STM32 MODBUS_RTU从站程序,KEIL编写
评论
共有 条评论