资源简介

基于STM32F103的MAX30205人体体温传感器的应用,现在可以找到的MAX30205人体体温传感器的底层大多都是基于Android的代码,之前买了一个模块尝试着用32做了一下,IIC通信,分享一下经验.

资源截图

代码片段和文件信息

/**************************************************************************//**
 * @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 11:25  3.10完成\CORE\core_cm3.c

     文件      85714  2011-02-09 14:59  3.10完成\CORE\core_cm3.h

     文件      12765  2011-03-10 10:52  3.10完成\CORE\startup_stm32f10x_md.s

     文件       3072  2020-03-10 17:30  3.10完成\HARDWARE\IIC\IIC.c

     文件       1322  2020-03-10 17:30  3.10完成\HARDWARE\IIC\IIC.h

     文件       1848  2020-02-08 16:02  3.10完成\HARDWARE\IIC\sht31.c

     文件        260  2020-02-08 16:04  3.10完成\HARDWARE\IIC\sht31.h

     文件        513  2020-02-07 17:33  3.10完成\HARDWARE\led\led.c

     文件        132  2019-10-01 19:24  3.10完成\HARDWARE\led\led.h

     文件       3634  2020-03-10 18:39  3.10完成\HARDWARE\max30205\30205.c

     文件       1014  2020-03-10 18:33  3.10完成\HARDWARE\max30205\30205.h

     文件         21  2019-10-02 15:57  3.10完成\HARDWARE\oled\oled.c

     文件         96  2019-10-02 15:57  3.10完成\HARDWARE\oled\oled.h

     文件       1409  2019-10-08 11:06  3.10完成\HARDWARE\timer\timer.c

     文件        100  2019-10-02 16:36  3.10完成\HARDWARE\timer\timer.h

     文件     369486  2020-03-10 21:09  3.10完成\OBJ\30205.crf

     文件       2082  2020-03-10 21:09  3.10完成\OBJ\30205.d

     文件     398688  2020-03-10 21:09  3.10完成\OBJ\30205.o

     文件     378252  2020-03-10 21:10  3.10完成\OBJ\Bliz.axf

     文件       2579  2020-03-10 21:10  3.10完成\OBJ\Bliz.build_log.htm

     文件      41742  2020-03-10 21:10  3.10完成\OBJ\Bliz.hex

     文件      88251  2020-03-10 21:10  3.10完成\OBJ\Bliz.htm

     文件       1105  2020-03-10 21:10  3.10完成\OBJ\Bliz.lnp

     文件        479  2019-07-08 17:55  3.10完成\OBJ\Bliz.sct

     文件         18  2019-10-01 18:16  3.10完成\OBJ\control.crf

     文件         49  2019-10-01 18:16  3.10完成\OBJ\control.d

     文件       4752  2019-10-01 18:16  3.10完成\OBJ\control.o

     文件       3942  2020-03-10 21:09  3.10完成\OBJ\core_cm3.crf

     文件        104  2020-03-10 21:09  3.10完成\OBJ\core_cm3.d

     文件      11324  2020-03-10 21:09  3.10完成\OBJ\core_cm3.o

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

评论

共有 条评论