资源简介
STM32F103库函数版例程,所有例程,都是采用MDK5.14编译器。编译生成的.hex文件(可以用来下载到开发板的)都存放在工程/OBJ文件夹里面。
代码片段和文件信息
/**************************************************************************//**
* @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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17273 2010-06-07 10:25 实验24 SPI实验\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 实验24 SPI实验\CORE\core_cm3.h
文件 15503 2011-03-10 10:52 实验24 SPI实验\CORE\startup_stm32f10x_hd.s
文件 1827 2015-03-20 12:41 实验24 SPI实验\HARDWARE\KEY\key.c
文件 1186 2015-03-19 16:14 实验24 SPI实验\HARDWARE\KEY\key.h
文件 35016 2015-03-13 14:54 实验24 SPI实验\HARDWARE\LCD\font.h
文件 85363 2015-04-24 11:50 实验24 SPI实验\HARDWARE\LCD\lcd.c
文件 7529 2015-04-24 11:48 实验24 SPI实验\HARDWARE\LCD\lcd.h
文件 1298 2012-09-13 13:13 实验24 SPI实验\HARDWARE\LED\led.c
文件 638 2012-09-13 09:45 实验24 SPI实验\HARDWARE\LED\led.h
文件 3380 2015-03-20 17:13 实验24 SPI实验\HARDWARE\SPI\spi.c
文件 718 2012-09-16 16:49 实验24 SPI实验\HARDWARE\SPI\spi.h
文件 9387 2015-03-24 22:36 实验24 SPI实验\HARDWARE\W25QXX\w25qxx.c
文件 2332 2015-03-13 14:05 实验24 SPI实验\HARDWARE\W25QXX\w25qxx.h
文件 399 2011-04-23 10:24 实验24 SPI实验\keilkilll.bat
文件 100250 2015-05-09 11:20 实验24 SPI实验\OBJ\SPI.hex
文件 1792 2015-03-23 21:03 实验24 SPI实验\README.TXT
文件 8982 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\misc.h
文件 21690 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_adc.h
文件 7555 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_bkp.h
文件 27559 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_can.h
文件 6573 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_cec.h
文件 2162 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_crc.h
文件 15233 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_dac.h
文件 3818 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h
文件 20754 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_dma.h
文件 6824 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_exti.h
文件 25445 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_flash.h
文件 27016 2012-08-25 16:33 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_fsmc.h
文件 20175 2011-03-10 10:47 实验24 SPI实验\STM32F10x_FWLib\inc\stm32f10x_gpio.h
............此处省略2966个文件信息
相关资源
- 四线电阻屏驱动 stm32f103
- 基于stm32f103ze的飞机大战游戏
- stm32_MCU移植接入机智云新
- 武术擂台机器人程序 stm32f103x
- STM32F103C8T6 单片机 ESP8266 12F接入机智云
- STM32F103VET6启航开发板例程集.rar
- stm32f103RC程序例程
- STM32+MPU6050+HMC5883L+BMP180姿态解算程序
- STM32F103驱动线性CCD与上位机通信
- stm32智能手表系统的设计硬件及软件源
- STM32 串口激光测距 外加服务器程序,
- 基于LabVIEW的ARM Cortex-M3嵌入式开发宝典
- STM32F103 战舰V3基础例程(HAL库版)
- STM32F103ZET6核心板+DHT11+OLED.zip
- 开发例程STM32F103的各种开发子程序
- STM32F103SPWM
- STM32F103xx + uCOS -ii 项目模板
- 正点原子精英版标准例程-库函数版本
- stm32f103c8t6移植RT-Thread之线程管理
- STM32_Min.zip
- STM32F103C8T6 USB HID下位机程序/MPU6050姿态
- STM32F103C8T6标准库部分例程点灯、串口
- STM32F103移植FreeModbus同时实现ModbusRTU和
- STM32F103移植的UCOSIIIHAL库
- modbus通用读取电表数据源码,使用的
- 一次搞定,STM32F103各种外围电路合集
- STM32F103C8开发板 STM32最小系统核心板
- 基于LabVIEW的ARM Cortex-M3嵌入式开发宝典
- pulse sensor中文资料+Stm32f103程序
- STM32F103 UC/OS-II关于各种任务间通信的
评论
共有 条评论