资源简介
STM32的USART通讯
STM32通讯实验实验目的:
理解嵌入式通讯的基本原理;
掌握STM32的USART通讯;
理解通讯协议的使用。
代码片段和文件信息
/**************************************************************************//**
* @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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 391168 2017-04-14 18:59 实验三\实验三报告.doc
文件 0 2016-09-24 15:34 实验三\实验三程序\Doc\readme.txt
文件 401 2016-09-24 15:34 实验三\实验三程序\keilkill.bat
文件 17273 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\core_cm3.c
文件 85714 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\core_cm3.h
文件 15766 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_cl.s
文件 15503 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_hd.s
文件 15692 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_hd_vl.s
文件 12376 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_ld.s
文件 13656 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_ld_vl.s
文件 12765 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_md.s
文件 14073 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_md_vl.s
文件 15955 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\startup\startup_stm32f10x_xl.s
文件 633941 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\stm32f10x.h
文件 36557 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\system_stm32f10x.c
文件 2085 2016-09-24 15:34 实验三\实验三程序\Libraries\CMSIS\system_stm32f10x.h
文件 8982 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\misc.h
文件 21690 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_adc.h
文件 7555 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_bkp.h
文件 27559 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_can.h
文件 6573 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_cec.h
文件 2162 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_crc.h
文件 15233 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_dac.h
文件 3818 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_dbgmcu.h
文件 20754 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_dma.h
文件 6824 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_exti.h
文件 25445 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_flash.h
文件 27016 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_fsmc.h
文件 20175 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_gpio.h
文件 30029 2016-09-24 15:34 实验三\实验三程序\Libraries\FWlib\inc\stm32f10x_i2c.h
............此处省略161个文件信息
- 上一篇:Nios ii 奇幻漂流 完整版
- 下一篇:仿微信底部导航栏
相关资源
- 国外非常流行的步进电机STM32控制代码
- 输液监测装置.zip
- 零死角玩转stm32-初级篇+中级篇+高级篇
- 光传感器opt3001驱动—stm32f1
- stm驱动L298N
- 零死角玩转stm32 初级篇+中级篇+高级篇
- stm32-串口开发工具软件(含超级终端
- stm32万年历报告.doc
- STM32(硬件SPI)+RC522读写卡源程序
- STM32内部时钟使用(系统时钟)——
- STM32F103库函数版例程
- STM32心率计程序及原理图
- Keil.STM32F4xx_DFP.1.0.8 支持包.rar
- lwip+ucosIII+stm32+keil
- 基于STM32的LD3320语音识别程序
- grbl在stm32上的移植,添加脱机操作
- STM32L1XX HAL 库
- STM32 STM8 全系列原理图库和封装库
- 四线电阻屏驱动 stm32f103
- STM32F4XX 中文参考手册
- 12467230STM32L073xx_User_Manual.chm
- STM32遥控平衡车,陀螺仪用的MPU6050,
- YIXIN_W5500 模块配套资料.rar
- STM32f030 程序
- stm32 USB虚拟串口驱动 全系列 全兼容无
- HAL库+CubeMX+Stm32F405实现串口DMA不定长收
- stm32F469DISCO开发板TCD1304驱动
- 基于stm32f103ze的飞机大战游戏
- STM32正点原子培训视频PPT讲义.rar
- stm32_MCU移植接入机智云新
评论
共有 条评论