资源简介
自己写的HC-SR04超声波测距模块的代码,使用的主控是STM32F103,在keil里面写的l
代码片段和文件信息
/**************************************************************************//**
* @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 2015-06-30 13:26 HC-SR04超声波测距\
目录 0 2015-06-30 13:25 HC-SR04超声波测距\CM3\
文件 17273 2014-12-24 12:19 HC-SR04超声波测距\CM3\core_cm3.c
文件 85714 2014-12-24 12:19 HC-SR04超声波测距\CM3\core_cm3.h
文件 12765 2014-12-24 12:19 HC-SR04超声波测距\CM3\startup_stm32f10x_md.s
文件 633941 2014-12-24 12:19 HC-SR04超声波测距\CM3\stm32f10x.h
文件 36557 2014-12-24 12:19 HC-SR04超声波测距\CM3\system_stm32f10x.c
文件 2085 2014-12-24 12:19 HC-SR04超声波测距\CM3\system_stm32f10x.h
文件 226970 2015-05-17 18:46 HC-SR04超声波测距\HC-SR04超声波测距模块.pdf
目录 0 2015-06-30 13:25 HC-SR04超声波测距\Libraries\
文件 7046 2014-12-24 12:19 HC-SR04超声波测距\Libraries\misc.c
文件 8982 2014-12-24 12:19 HC-SR04超声波测距\Libraries\misc.h
文件 47201 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_adc.c
文件 21690 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_adc.h
文件 8463 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_bkp.c
文件 7555 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_bkp.h
文件 45135 2015-04-04 21:04 HC-SR04超声波测距\Libraries\stm32f10x_can.c
文件 27559 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_can.h
文件 11656 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_cec.c
文件 6573 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_cec.h
文件 3347 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_crc.c
文件 2162 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_crc.h
文件 19087 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_dac.c
文件 15233 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_dac.h
文件 5149 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_dbgmcu.c
文件 3818 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_dbgmcu.h
文件 29607 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_dma.c
文件 20754 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_dma.h
文件 6959 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_exti.c
文件 6824 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_exti.h
文件 62551 2014-12-24 12:19 HC-SR04超声波测距\Libraries\stm32f10x_flash.c
............此处省略181个文件信息
相关资源
- STM32F1控制HC-SR04超声波测距
- HC-SR04 全套超声波测距资料
- 关于测距模块HC-SR04的内部电路图 ,
- HC-SR04超声波测距资料及例程代码 51单
- STM32F103VET6驱动HC-SR04.rar
- STM32HC-SR04程序
- STM32F103VE_Sonic HC-SR04超声波模块程序
- hc-sr04超声波测距
- 基于STM32的超声波测距程序
- HC-SR04超声波模块+STM32F103
- 基于STM32F103ZET6芯片的超声波模块HC-
- STM32超声波测距代码-HC-SR04.zip
- HC-SR04超声波测距显示LED灯闪烁
- STM32F10X 和HC-SR04 测距
- LCD12864串行显示DS18B20温度和超声波测
- 嵌入式linux之mini2440的hc-sr04超声波驱动
- 超声模块HC-SR04说明及例程
- 基于HC-SR04超声波测距LCD12864显示源码
- MSP430G2*单片机利用HC-SR04测距
- stm32f103rc_hcsr04.rar
- HC-SR04超声波测距模块及原理图
- HC-SR04 超声波测距C51程序,精度2MM
- HC-SR04+89C52RC+11.0592Mhz高精度驱动程序
- STC15/STC15F2K60S2/STC15W4K32S4系列读取超声
- 51单片机超声波测距HC-SR04程序
- CC2530与HC-SR04超声波模块通信
- HC-SR04超声波测距模块+OLED12864显示
- 基于STM32和HC-SR04超声波测距模块范例
评论
共有 条评论