资源简介
开发基于STM32F103RCT6,是一款集成 ALS、红外LED和接近检测器的光学模块和环境亮度感测的环境亮度传感器.很多注释,方便大家查阅观看.
代码片段和文件信息
/**************************************************************************//**
* @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 APDS_gesture\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 APDS_gesture\CORE\core_cm3.h
文件 15503 2011-03-10 10:52 APDS_gesture\CORE\startup_stm32f10x_hd.s
文件 33810 2017-08-22 12:09 APDS_gesture\HARDWARE\APDS_9960\APDS_9960.c
文件 17646 2016-01-20 15:20 APDS_gesture\HARDWARE\APDS_9960\APDS_9960.h
文件 3185 2016-01-19 15:27 APDS_gesture\HARDWARE\IIC\myiic.c
文件 1320 2016-01-19 14:04 APDS_gesture\HARDWARE\IIC\myiic.h
文件 2201 2017-08-14 23:23 APDS_gesture\HARDWARE\IO\EXTI\EXTI.c
文件 637 2015-11-25 00:40 APDS_gesture\HARDWARE\IO\EXTI\EXTI.h
文件 1298 2015-11-25 19:30 APDS_gesture\HARDWARE\IO\LED\LED.c
文件 638 2015-11-25 19:30 APDS_gesture\HARDWARE\IO\LED\LED.h
文件 17264 2015-11-23 23:23 APDS_gesture\HARDWARE\twi\twi.c
文件 1660 2015-11-22 16:09 APDS_gesture\HARDWARE\twi\twi.h
文件 9229 2015-11-24 22:48 APDS_gesture\HARDWARE\wire\wire.c
文件 2942 2015-11-22 17:16 APDS_gesture\HARDWARE\wire\wire.h
文件 399 2011-04-23 10:24 APDS_gesture\keilkilll.bat
文件 290904 2017-08-30 10:32 APDS_gesture\OBJ\apds_9960.crf
文件 1278 2017-08-30 10:32 APDS_gesture\OBJ\apds_9960.d
文件 346952 2017-08-30 10:32 APDS_gesture\OBJ\apds_9960.o
文件 3944 2017-08-30 10:32 APDS_gesture\OBJ\core_cm3.crf
文件 105 2017-08-30 10:32 APDS_gesture\OBJ\core_cm3.d
文件 11516 2017-08-30 10:32 APDS_gesture\OBJ\core_cm3.o
文件 265410 2017-08-30 10:32 APDS_gesture\OBJ\delay.crf
文件 766 2017-08-30 10:32 APDS_gesture\OBJ\delay.d
文件 290672 2017-08-30 10:32 APDS_gesture\OBJ\delay.o
文件 19 2017-08-30 09:20 APDS_gesture\OBJ\ExtDll.iex
文件 265424 2017-08-30 10:32 APDS_gesture\OBJ\exti.crf
文件 796 2017-08-30 10:32 APDS_gesture\OBJ\exti.d
文件 291568 2017-08-30 10:32 APDS_gesture\OBJ\exti.o
文件 264958 2017-08-30 10:32 APDS_gesture\OBJ\led.crf
............此处省略144个文件信息
- 上一篇:cyclone V封装及原理图
- 下一篇:联想电脑大写锁定提示
评论
共有 条评论