资源简介
成功移植DMP官方库文件到STM32中,测试成功采集角度正常,程序简单方便移植和使用。可以直接使用KEIL进行编译,下载。
代码片段和文件信息
/**************************************************************************//**
* @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 2013-09-28 11:23 DMP移植测试 - 副本\
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\CoreSupport\
文件 17273 2010-06-07 10:25 DMP移植测试 - 副本\Libraries\CMSIS\CM3\CoreSupport\core_cm3.c
文件 85714 2011-02-09 14:59 DMP移植测试 - 副本\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\
文件 26297 2011-03-14 12:31 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\Release_Notes.html
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\
文件 12604 2011-03-10 10:54 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_cl.s
文件 12592 2011-03-10 10:53 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_hd.s
文件 12239 2011-03-10 10:53 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_hd_vl.s
文件 9826 2011-03-10 10:53 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_ld.s
文件 10275 2011-03-10 10:53 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_ld_vl.s
文件 10275 2011-03-10 10:53 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_md.s
文件 10757 2011-03-10 10:53 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_md_vl.s
文件 13252 2011-03-10 10:53 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\TrueSTUDIO\startup_stm32f10x_xl.s
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\
文件 15766 2011-03-10 10:52 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_cl.s
文件 15503 2011-03-10 10:52 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd.s
文件 15692 2011-03-10 10:52 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd_vl.s
文件 12376 2011-03-10 10:52 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_ld.s
文件 13656 2011-03-10 10:52 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_ld_vl.s
文件 12765 2011-03-10 10:52 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_md.s
文件 14073 2011-03-10 10:51 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_md_vl.s
文件 15955 2011-03-10 10:51 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_xl.s
目录 0 2013-09-28 11:23 DMP移植测试 - 副本\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\
............此处省略286个文件信息
相关资源
- ADS1256-MDK5-STM32F103C8.rar
- STM32F407ZG接入ONENET平台代码
- STM32F427 + LAN8710 STM32CubeMX4.25.0工程配置
- 利用三个定时器驱动三个步进电机的
- 基于STM32F103控制16PWM路舵机驱动板PC
- 自动泊车系统.zip
- STM32F030使用HAL库做低功耗
- STM32语音模块播报
- 正点原子战舰板STM32F103双通道示波器
- STM32之间的SPI通信
- STM32所有型号中文参考手册
- 毕设:基于 stm32 微控制器的绘图机器
- 基于STM32F103ZET6示波器程序.rar
- 基于stm32的三相逆变代码
- 激光测距模块简易测量(STM32F429).
- STM32平衡车代码.rar
- 倒立摆stm32f1.rar
- STM32F103RCT语音模块LD3320 STM32与51单片
- stm32 5个串口初始化实现串口缓存,前
- 测量PM2.5测量实验
- STM32MINI RTC闹钟 USMART调试时间
- DTH11温湿度显示在IIC_OLED上,好用,自
- STM32F0控制RF24L01发送程序
- 激光测距模块tof10120基于stm32f103开发板
- STM32F103通过DMA传输进行快速FFT.rar
- STM32串口接收不定长数据程序
- stm32f103超声波传感器hcsr04控制模板
- OSLW移植.rar
- fdc2214读电容值STM32
- 基于stm32点亮8_8max7219点阵灯共阴点阵
评论
共有 条评论