资源简介
使用STM32F1系类单片机驱动BH1750(GY302)光照强度传感器的实验完整工程,下载直接可用,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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-02-07 20:20 BH1750环境光强度传感器\
目录 0 2020-02-06 16:45 BH1750环境光强度传感器\Doc\
文件 0 2018-09-26 19:30 BH1750环境光强度传感器\Doc\readme.txt
文件 401 2016-09-01 09:45 BH1750环境光强度传感器\keilkill.bat
目录 0 2020-02-06 16:45 BH1750环境光强度传感器\Libraries\
目录 0 2020-02-06 16:45 BH1750环境光强度传感器\Libraries\CMSIS\
文件 17273 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\core_cm3.c
文件 85714 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\core_cm3.h
目录 0 2020-02-06 16:45 BH1750环境光强度传感器\Libraries\CMSIS\startup\
文件 15766 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_cl.s
文件 15503 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_hd.s
文件 15692 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_hd_vl.s
文件 12376 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_ld.s
文件 13656 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_ld_vl.s
文件 12765 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_md.s
文件 14073 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_md_vl.s
文件 15955 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\startup\startup_stm32f10x_xl.s
文件 633941 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\stm32f10x.h
文件 36557 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\system_stm32f10x.c
文件 2085 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\CMSIS\system_stm32f10x.h
目录 0 2020-02-06 16:45 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\
目录 0 2020-02-06 16:45 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\
文件 8982 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
文件 21690 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h
文件 7555 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h
文件 27559 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h
文件 6573 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h
文件 2162 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h
文件 15233 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h
文件 3818 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h
文件 20754 2015-07-04 15:01 BH1750环境光强度传感器\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h
............此处省略193个文件信息
- 上一篇:邦特思泰餐饮会员管理系统V10
- 下一篇:模式识别模式识别模式识别
相关资源
- RFID_RC522战舰程序
- STM32fF103ZET6读取max30100心率传感器值
- 基于STM32F103的数据采集系统设计
- stm32+MPU6050+GPS+SD卡读写+ad采集+串口输
- STM32f103多串口程序 32单片机程序 亲测
- STM32使用SHT10进行温湿度测量
- 单片机毕设stm32,脉搏检测智能运动装
- STM32F1 做的MP3播放器
- 基于STM32F103+ADS1292的心率实时显示串口
- 全桥双极性带死区互补SPWM基于STM32F
- STM32 SDIO方式读写SD卡
- amg8833+openmv热成像人脸跟随测温云台
- stm32f407 ili9341屏幕驱动 HAL库 带FreeR
- 实验1:PCM5102播放SD卡音乐STM32F103ZET
- stm32_fft_AD9220.zip
- STM32中断查询AD转换结果 ,电压大于
- stm32 adc多通道采集 库函数版本
- stm32驱动nokia5110液晶屏程序
- RC663 STM32源代码
- STM32-IAR开发教程
- STM32F407二维码例程
- 003 STM32固件库使用手册的(中文).
- STM32上实现的超级玛丽源码
- STM32F103RB最小系统PCB工程_RV2(2012.12
- stm32 ENC-03角速度模块驱动程序
- 基于STM32车牌识别程序_带管理计费
- STM32DHT11程序
- STM32JQ8400FL-10P程序
- STM3228BYJ-48步进电机+ULN2003驱动程序
- 标准麦轮小车源码
评论
共有 条评论