• 大小: 5.67MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-12
  • 语言: 其他
  • 标签: STM32R  

资源简介

基于STM32单片机的温度传感器系统,可检测室内外温度及报警系统.

资源截图

代码片段和文件信息

/**************************************************************************//**
 * @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  温控\CORE\core_cm3.c

     文件      85714  2011-02-09 14:59  温控\CORE\core_cm3.h

     文件      15503  2011-03-10 10:52  温控\CORE\startup_stm32f10x_hd.s

     文件        404  2018-01-12 13:35  温控\HELLO\beep.c

     文件         73  2018-01-12 13:47  温控\HELLO\beep.h

     文件       2791  2018-01-12 13:47  温控\HELLO\ds18b20.c

     文件        515  2018-01-11 18:13  温控\HELLO\ds18b20.h

     文件       3488  2018-01-12 13:32  温控\HELLO\key.c

     文件        904  2018-01-12 13:35  温控\HELLO\key.h

     文件      16602  2018-01-12 13:35  温控\HELLO\LCD_5110.c

     文件       2642  2018-01-12 13:47  温控\HELLO\LCD_5110.h

     文件       2989  2018-01-11 16:17  温控\HELLO\led.c

     文件        527  2018-01-12 13:55  温控\HELLO\led.h

     文件       2277  2018-01-12 13:55  温控\HELLO\usart.c

     文件        253  2018-01-12 13:25  温控\HELLO\usart.h

     文件       4673  2018-01-18 20:07  温控\HELLO\usart3.c

     文件        211  2018-01-18 20:08  温控\HELLO\usart3.h

     文件        399  2011-04-23 10:24  温控\keilkilll.bat

     文件     347006  2019-04-22 08:24  温控\OBJ\beep.crf

     文件       1613  2019-04-22 08:24  温控\OBJ\beep.d

     文件     378660  2019-04-22 08:24  温控\OBJ\beep.o

     文件       3939  2019-04-22 08:24  温控\OBJ\core_cm3.crf

     文件        101  2019-04-22 08:24  温控\OBJ\core_cm3.d

     文件      11076  2019-04-22 08:24  温控\OBJ\core_cm3.o

     文件     346839  2018-01-11 10:56  温控\OBJ\delay.crf

     文件       1615  2018-01-11 10:56  温控\OBJ\delay.d

     文件     381292  2018-01-11 10:56  温控\OBJ\delay.o

     文件     346444  2018-01-11 10:09  温控\OBJ\delay1.crf

     文件       1648  2018-01-11 10:09  温控\OBJ\delay1.d

     文件     379648  2018-01-11 10:09  温控\OBJ\delay1.o

............此处省略193个文件信息

评论

共有 条评论

相关资源