资源简介
带设计报告的行车倒车报警器系统设计源代码,代码采用C语言实现,包括几个模块,如超声波测距模块,红外模块,显示器模块,语音模块等
代码片段和文件信息
/**************************************************************************//**
* @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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 743424 2018-06-25 19:43 最终版\嵌入式课程设计报告何玲.doc
文件 17273 2018-06-25 19:45 最终版\最终版\CORE\core_cm3.c
文件 85714 2018-06-25 19:45 最终版\最终版\CORE\core_cm3.h
文件 15632 2018-06-25 19:45 最终版\最终版\CORE\startup_stm32f10x_hd.s
文件 2815 2018-06-25 19:45 最终版\最终版\FATFS\doc\css_e.css
文件 3177 2018-06-25 19:45 最终版\最终版\FATFS\doc\css_j.css
文件 1414 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\f1.png
文件 1458 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\f2.png
文件 1039 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\f3.png
文件 2335 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\f4.png
文件 2479 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\f5.png
文件 1436 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\f6.png
文件 2401 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\la
文件 2379 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\la
文件 19068 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\rwtest.png
文件 8153 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\rwtest2.png
文件 3011 2018-06-25 19:45 最终版\最终版\FATFS\doc\img\rwtest3.png
文件 4007 2018-06-25 19:45 最终版\最终版\FATFS\doc\updates.txt
文件 3672 2018-06-25 19:45 最终版\最终版\FATFS\exfuns\exfuns.c
文件 1316 2018-06-25 19:45 最终版\最终版\FATFS\exfuns\exfuns.h
文件 6788 2018-06-25 19:45 最终版\最终版\FATFS\exfuns\fattester.c
文件 648 2018-06-25 19:45 最终版\最终版\FATFS\exfuns\fattester.h
文件 4596 2018-06-25 19:45 最终版\最终版\FATFS\exfuns\mycc936.c
文件 6621 2018-06-25 19:45 最终版\最终版\FATFS\fattester.c
文件 966 2018-06-25 19:45 最终版\最终版\FATFS\fattester.h
文件 6505 2018-06-25 19:45 最终版\最终版\FATFS\src\00readme.txt
文件 6186 2018-06-25 19:45 最终版\最终版\FATFS\src\diskio.c
文件 2438 2018-06-25 19:45 最终版\最终版\FATFS\src\diskio.h
文件 141694 2018-06-25 19:45 最终版\最终版\FATFS\src\ff.c
文件 12334 2018-06-25 19:45 最终版\最终版\FATFS\src\ff.h
............此处省略294个文件信息
- 上一篇:C++作业_选课系统
- 下一篇:基于包过滤技术防火墙设计源码+论文
相关资源
- STM32_GY25Z计步器
- C语言实现的红外发送STM32F10x单片机应
- stm32L系列F系列 加密库Cryptographic lib
- 心率传感器算法-stm32-实测可用
- 工程使用的STM32版FX2N源码和原理图
- 基于stm32f1的频率计
- stm32F103zet6开串口通信2 C语言
- ADC电压采集程序
- STM32 电子密码锁设计,LCD12864显示C语
- 利用OV7725照相机与STM32F1识别车牌
- 基于STM32的小车红外黑线寻迹代码
- stm32图像采集+QT上位机源码
- STM32,5110液晶显示声纳探鱼器200KHz,
- stm32iap+bootloader+app+mfc上位机
- BMP180气压计STM32例程+51例程+数据手册
- STM32实现俄罗斯方块游戏C语言
- keil基于stm32的模拟交通灯项目源码+文
- STM32F4超声波测距
- HDC1080驱动 温湿度 STM32 IIC I2C
- 语音识别STM_C语言代码
- STC15单片机ESP8266开发试验程序含原理
- 步进电机控制程序175063
- STM32F030无刷电机驱动程序
- STM32 RTC+LCD12864 实时时钟和闹钟实验
- STM32仿造FX3U-14MT-2AD2DA1CAN.rar
- libusb bulk传输 STM32上位机程序
- STM32 USB BULK
- STM32驱动NRF24L01的视频传输
- 嵌入式实时操作系统μC/OS-III(英文
- ALIENTEK 战舰STM32开发板最新例程
评论
共有 条评论