资源简介
STM32F1的PWM循迹小车程序:红外光电检测,PWM控制电机。
代码片段和文件信息
/**************************************************************************//**
* @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 10:25 STM32F1的PWM循迹小车\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 STM32F1的PWM循迹小车\CORE\core_cm3.h
文件 15503 2011-03-10 10:52 STM32F1的PWM循迹小车\CORE\startup_stm32f10x_hd.s
文件 3313 2019-03-21 23:54 STM32F1的PWM循迹小车\HARDWARE\INTERFACE\interface.c
文件 678 2018-06-20 08:09 STM32F1的PWM循迹小车\HARDWARE\INTERFACE\interface.h
文件 3434 2018-06-19 10:06 STM32F1的PWM循迹小车\HARDWARE\MOTOR\motor.c
文件 1120 2019-03-18 23:30 STM32F1的PWM循迹小车\HARDWARE\MOTOR\motor.h
文件 3942 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\core_cm3.crf
文件 104 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\core_cm3.d
文件 11244 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\core_cm3.o
文件 349955 2019-03-18 22:47 STM32F1的PWM循迹小车\OBJ\delay.crf
文件 1669 2019-03-18 22:47 STM32F1的PWM循迹小车\OBJ\delay.d
文件 385196 2019-03-18 22:47 STM32F1的PWM循迹小车\OBJ\delay.o
文件 350703 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\interface.crf
文件 1817 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\interface.d
文件 386016 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\interface.o
文件 352290 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\main.crf
文件 1688 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\main.d
文件 386788 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\main.o
文件 348900 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\misc.crf
文件 1613 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\misc.d
文件 384720 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\misc.o
文件 354087 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\motor.crf
文件 1765 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\motor.d
文件 395932 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\motor.o
文件 63 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\startup_stm32f10x_hd.d
文件 6804 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\startup_stm32f10x_hd.o
文件 356069 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\stm32f10x_adc.crf
文件 1910 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\stm32f10x_adc.d
文件 431488 2019-03-18 22:46 STM32F1的PWM循迹小车\OBJ\stm32f10x_adc.o
............此处省略168个文件信息
- 上一篇:STM32F1循迹小车程序
- 下一篇:最新中国电信CRM规范2.0
相关资源
- STM32F1循迹小车程序
- STM32F103C8T6 超声波传感器采集加串口发
- Flash_Loader_Demonstrator_V1.3_Setup
- STM32固件库使用手册_v3.5版本
- 基于stm32f4的人眼状态识别
- STM32 自动更新程序
- STM32_W5500_HTTPC_Download_File.rar
- stm32存储Excel/csv文件
- STM32_MQTT_TCP.rar
- stm32f407+mbed+lwip+lan8720 例程
- STM32蓝牙小车可调速程序
- STM32F4-SIM900A模块GPRS功能使用精简例程
- stm32 BootLoader简单跳转
- STM32F407示波器 正点原子探索者STM32F
- stm32 + w5500 + MQTT
-
ROSba
seSTM32CODE - STM32F103控制MAX31865采集PT100温度
- stm32 摄像头云台
- stm32通过SPI驱动sx1278_lora程序
- stm32f103硬件I2C主从通信
- stm32 12864程序
- 颜色识别程序stm32f103使用tcs3200含上位
- STM32软件开发指南
- PZ-OV7670摄像头模块--STM32F1测试程序.
- 两电平SVPWM带Z源仿真模型
- QT串口调试工具用于stm32串口通信
- STM32F103RB ILI9481屏代码
- STM32F103驱动
- SI4432 STM32源码接收和发送程序
- lpwmm_10370863.zip
评论
共有 条评论