资源简介
STM32的温湿度采集报警系统,DHT11,LCD显示
代码片段和文件信息
/**************************************************************************//**
* @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 2011-12-12 12:03 DHT11\CMSIS\core_cm3.c
文件 85714 2011-12-12 12:03 DHT11\CMSIS\core_cm3.h
文件 633941 2011-12-12 12:03 DHT11\CMSIS\stm32f10x.h
文件 36557 2011-12-12 12:03 DHT11\CMSIS\system_stm32f10x.c
文件 2085 2011-12-12 12:03 DHT11\CMSIS\system_stm32f10x.h
文件 581 2016-06-01 17:14 DHT11\HARWARE\BEEP.c
文件 195 2016-05-30 10:41 DHT11\HARWARE\BEEP.h
文件 2500 2016-05-29 23:59 DHT11\HARWARE\DHT11.c
文件 497 2016-05-29 22:20 DHT11\HARWARE\DHT11.h
文件 3626 2016-05-31 23:27 DHT11\HARWARE\DS18B20.c
文件 341 2016-05-31 23:04 DHT11\HARWARE\DS18B20.h
文件 1884 2016-06-01 17:22 DHT11\HARWARE\LCD.c
文件 232 2016-06-01 14:41 DHT11\HARWARE\LCD.h
文件 400 2016-05-29 18:08 DHT11\HARWARE\LED.c
文件 265 2016-06-01 16:25 DHT11\HARWARE\LED.h
文件 245727 2016-06-01 17:22 DHT11\OBJ\beep.crf
文件 493 2016-06-01 17:22 DHT11\OBJ\beep.d
文件 262204 2016-06-01 17:22 DHT11\OBJ\beep.o
文件 3939 2016-06-01 13:46 DHT11\OBJ\core_cm3.crf
文件 101 2016-06-01 13:46 DHT11\OBJ\core_cm3.d
文件 11212 2016-06-01 13:46 DHT11\OBJ\core_cm3.o
文件 246303 2016-06-01 22:05 DHT11\OBJ\delay.crf
文件 517 2016-06-01 22:05 DHT11\OBJ\delay.d
文件 265528 2016-06-01 22:05 DHT11\OBJ\delay.o
文件 540 2016-06-01 22:05 DHT11\OBJ\delay.__i
文件 247291 2016-06-01 13:46 DHT11\OBJ\dht11.crf
文件 546 2016-06-01 13:46 DHT11\OBJ\dht11.d
文件 270352 2016-06-01 13:46 DHT11\OBJ\dht11.o
文件 247994 2016-06-01 13:46 DHT11\OBJ\ds18b20.crf
文件 614 2016-06-01 13:46 DHT11\OBJ\ds18b20.d
............此处省略195个文件信息
评论
共有 条评论