资源简介
我的一篇机智云入门博客中用来演示的一个Demo,可以下载自己验证用
代码片段和文件信息
/**************************************************************************//**
* @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 机智云演示Demo\光敏传感器\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 机智云演示Demo\光敏传感器\CORE\core_cm3.h
文件 15503 2011-03-10 10:52 机智云演示Demo\光敏传感器\CORE\startup_stm32f10x_hd.s
文件 6690 2018-05-12 18:17 机智云演示Demo\光敏传感器\Gizwits\gizwits_product.c
文件 1222 2018-04-23 04:30 机智云演示Demo\光敏传感器\Gizwits\gizwits_product.h
文件 41575 2018-05-12 09:45 机智云演示Demo\光敏传感器\Gizwits\gizwits_protocol.c
文件 23550 2018-05-12 18:19 机智云演示Demo\光敏传感器\Gizwits\gizwits_protocol.h
文件 22968 2018-05-12 09:45 机智云演示Demo\光敏传感器\Gizwits\gizwits_protocol.h~RF1ef1e62.TMP
文件 4894 2015-03-20 15:50 机智云演示Demo\光敏传感器\HARDWARE\ADC\adc.c
文件 834 2015-03-16 20:55 机智云演示Demo\光敏传感器\HARDWARE\ADC\adc.h
文件 1740 2015-04-01 12:12 机智云演示Demo\光敏传感器\HARDWARE\KEY\key.c
文件 1059 2015-03-23 22:47 机智云演示Demo\光敏传感器\HARDWARE\KEY\key.h
文件 35016 2015-03-13 14:54 机智云演示Demo\光敏传感器\HARDWARE\LCD\font.h
文件 85336 2015-04-01 15:10 机智云演示Demo\光敏传感器\HARDWARE\LCD\lcd.c
文件 7561 2015-03-31 18:07 机智云演示Demo\光敏传感器\HARDWARE\LCD\lcd.h
文件 1299 2015-03-23 22:25 机智云演示Demo\光敏传感器\HARDWARE\LED\led.c
文件 638 2015-03-23 22:26 机智云演示Demo\光敏传感器\HARDWARE\LED\led.h
文件 1209 2015-03-23 23:12 机智云演示Demo\光敏传感器\HARDWARE\LSENS\lsens.c
文件 872 2015-03-16 21:14 机智云演示Demo\光敏传感器\HARDWARE\LSENS\lsens.h
文件 2089 2017-06-12 10:50 机智云演示Demo\光敏传感器\HARDWARE\TIMER\timer.c
文件 585 2016-11-18 11:52 机智云演示Demo\光敏传感器\HARDWARE\TIMER\timer.h
文件 3034 2017-07-09 22:02 机智云演示Demo\光敏传感器\HARDWARE\USART3\usart3.c
文件 597 2016-11-18 15:48 机智云演示Demo\光敏传感器\HARDWARE\USART3\usart3.h
文件 399 2011-04-23 10:24 机智云演示Demo\光敏传感器\keilkilll.bat
文件 351085 2018-05-12 18:25 机智云演示Demo\光敏传感器\OBJ\adc.crf
文件 1603 2018-05-12 18:25 机智云演示Demo\光敏传感器\OBJ\adc.d
文件 386456 2018-05-12 18:25 机智云演示Demo\光敏传感器\OBJ\adc.o
文件 20467 2018-05-12 18:25 机智云演示Demo\光敏传感器\OBJ\common.crf
文件 449 2018-05-12 18:25 机智云演示Demo\光敏传感器\OBJ\common.d
文件 26520 2018-05-12 18:25 机智云演示Demo\光敏传感器\OBJ\common.o
............此处省略175个文件信息
- 上一篇:STM32UART串口程序
- 下一篇:基于STM32的MQ-3酒精浓度检测源码
评论
共有 条评论