资源简介
选用了STM32F103C8T6单片机和ADXL345三轴加速度传感器,来控制全彩灯珠和红外线激光灯,达到指示自行车的刹车或者转向的功能。
代码片段和文件信息
/******************************************************************************
* @file: core_cm3.c
* @purpose: CMSIS Cortex-M3 Core Peripheral Access layer Source File
* @version: V1.10
* @date: 24. Feb. 2009
*----------------------------------------------------------------------------
*
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* ARM Limited (ARM) is supplying this software for use with Cortex-Mx
* processor based microcontrollers. This file can be freely distributed
* within development tools that are supporting such ARM based processors.
*
* 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 armcc */
#define __INLINE __inline /*!< inline keyword for armcc */
#elif defined ( __ICCARM__ )
#define __ASM __asm /*!< asm keyword for iarcc */
#define __INLINE inline /*!< inline keyword for iarcc. Only avaiable in High optimization mode! */
#define __nop __no_operation /*!< no operation intrinsic in iarcc */
#elif defined ( __GNUC__ )
#define __ASM asm /*!< asm keyword for gcc */
#define __INLINE inline /*!< inline keyword for gcc */
#endif
#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
/**
* @brief Return the Process Stack Pointer
*
* @param none
* @return uint32_t 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 uint32_t Process Stack Pointer
* @return none
*
* 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
*
* @param none
* @return uint32_t Main Stack Pointer
*
* Return the current value of the MSP (main stack pointer)
* Cortex processor register
*/
__ASM uint32_t __get_MSP(void)
{
mrs r0 msp
bx lr
}
/**
* @brief Set the Main Stack Pointer
*
* @param uint32_t Main Stack Pointer
* @return none
*
* Assign the value mainStackPointer to the MSP
* (main stack pointer) Cortex processor register
*/
__ASM void __set_MSP(uint32_t mainStackP
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-12 14:53 资源\
目录 0 2018-10-12 14:54 资源\成品\
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\程序发客户\
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\程序发客户\suceed\
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\
文件 16249 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\core_cm3.c
文件 42077 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\core_cm3.h
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\startup\
文件 15872 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\startup\startup_stm32f10x_hd.s
文件 12236 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\startup\startup_stm32f10x_ld.s
文件 12564 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\startup\startup_stm32f10x_md.s
文件 530933 2011-06-06 20:02 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\stm32f10x.h
文件 24166 2011-06-04 11:47 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\system_stm32f10x.c
文件 2158 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\CMSIS\system_stm32f10x.h
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\
目录 0 2018-10-12 14:53 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\
文件 4951 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\misc.h
文件 19558 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_adc.h
文件 7373 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_bkp.h
文件 14289 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_can.h
文件 1980 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_crc.h
文件 10271 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_dac.h
文件 2980 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_dbgmcu.h
文件 18790 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_dma.h
文件 5833 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_exti.h
文件 14446 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_flash.h
文件 17276 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_fsmc.h
文件 15199 2011-06-06 11:36 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_gpio.h
文件 16923 2009-04-06 10:30 资源\成品\70257 客户资料\程序发客户\suceed\suceed1\FWlib\inc\stm32f10x_i2c.h
............此处省略41个文件信息
- 上一篇:KUKA机器人编程手册2
- 下一篇:费雪利息理论(中文)
相关资源
- STM32Cube RTC 万年历方式
- stm32 利用CAN控制电机
- stm32 波形发生器程序
- STM32 驱动 带字库LCD12864
- stm32+QMC5883L磁力传感器,可以用来融合
- mpu6050互补滤波算法角度串口输出stm
- 迷你STM32照相机OV7670
- 基于STM32的五子棋对战平台
- STM32-UCOSIII实战-----RTC+DHT11+按键+LCD显示
- ST7565_12864液晶STM32驱动
- STM32单片机产生PWM波并且可调
- stm32f407 GPRS通信源码
- ov7670带fifo的stm32f4程序
- 基于stm32f103c8的ad9854驱动程序
- 基于STM32的简易示波器
- BMP280 硬件SPI驱动程序 STM32F103C8T6
- 基于AJAX方式实现的STM32H7_WebServer网页
- ucosii+ucgui+touch(stm32_mini)移植教程与
- iap for stm32c8t6 串口实现简单iap功能
- 基于stm32f103mini的pid电机调速
- stm32 手持式示波器
- STM32+SD卡+ov7670视频播放
- STM32 触摸屏汉字、图片显示
- STM32F103串口接收控制PWM调节LED亮度
- STM32F1向串口一直发送数据
- STM32+FreeRTOS+W5500+MQTT
- STM32F4 USB虚拟串口VCP程序教程
- 基于tc35GSM模块与STM32的短信控制程序
- STM32固件库V2.0.3
- esp8266和24l01基于stm32f103c8t6单片机做的
评论
共有 条评论