资源简介
pca9685+stm32控制舵机,分享给大家
代码片段和文件信息
/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
* File Name : stm32f10x_vector.c
* Author : MCD Application Team
* Version : V2.0.3
* Date : 09/22/2008
* Description : STM32F10x vector table for EWARM5.x toolchain.
* This module performs:
* - Set the initial SP
* - Set the initial PC == __iar_program_start
* - Set the vector table entries with the exceptions ISR address
* - Configure external SRAM mounted on STM3210E-EVAL board
* to be used as data memory (optional to be enabled by user)
* After Reset the Cortex-M3 processor is in Thread mode
* priority is Privileged and the Stack is set to Main.
********************************************************************************
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
/* Includes ------------------------------------------------------------------*/
#include “stm32f10x_lib.h“
#include “stm32f10x_it.h“
/* Private typedef -----------------------------------------------------------*/
typedef void( *intfunc )( void );
typedef union { intfunc __fun; void * __ptr; } intvec_elem;
/* Private define ------------------------------------------------------------*/
/* Uncomment the following line if you need to use external SRAM mounted on
STM3210E-EVAL board as data memory */
/* #define DATA_IN_ExtSRAM */
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
#pragma language=extended
#pragma segment=“CSTACK“
void __iar_program_start( void );
#pragma location = “.intvec“
/* STM32F10x Vector Table entries */
const intvec_elem __vector_table[] =
{
{ .__ptr = __sfe( “CSTACK“ ) }
__iar_program_start
NMIException
HardFaultException
MemManageException
BusFaultException
UsageFaultException
0 0 0 0 /* Reserved */
SVCHandler
DebugMonitor
0 /* Reserved */
PendSVC
SysTickHandler
WWDG_IRQHandler
PVD_IRQHandler
TAMPER_IRQHandler
RTC_IRQHandler
FLASH_IRQHa
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9480 2015-05-21 15:02 SoftwareforPCA9685\cortexm3_macro.s
文件 94662 2015-05-21 15:02 SoftwareforPCA9685\Debug\Exe\RTCApplicationNote.hex
文件 336640 2015-05-21 15:02 SoftwareforPCA9685\Debug\Exe\RTCApplicationNote.out
文件 10360 2016-06-16 14:19 SoftwareforPCA9685\Debug\Exe\STM32_MCU.bin
文件 200332 2016-06-16 14:19 SoftwareforPCA9685\Debug\Exe\STM32_MCU.out
文件 10415 2016-06-12 16:01 SoftwareforPCA9685\Debug\Exe\STM32_MCU.sim
文件 7103 2015-05-21 15:02 SoftwareforPCA9685\Debug\Exe\STM32_MCU.sim._1
文件 10084 2015-05-21 15:02 SoftwareforPCA9685\Debug\Obj\application_rtc.o
文件 69412 2015-05-21 15:02 SoftwareforPCA9685\Debug\Obj\clock_calendar.o
文件 2316 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\cortexm3_macro.o
文件 12732 2015-05-21 15:02 SoftwareforPCA9685\Debug\Obj\eeprom.o
文件 81668 2015-05-21 15:02 SoftwareforPCA9685\Debug\Obj\lcd.o
文件 223932 2016-06-16 14:19 SoftwareforPCA9685\Debug\Obj\main.o
文件 75236 2015-05-21 15:02 SoftwareforPCA9685\Debug\Obj\menu.o
文件 2197 2015-05-21 15:02 SoftwareforPCA9685\Debug\Obj\RTCApplicationNote.pbd
文件 21044 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_bkp.o
文件 40152 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_can.o
文件 21132 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_dma.o
文件 16340 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_exti.o
文件 46520 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_flash.o
文件 33624 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_gpio.o
文件 57708 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_i2c.o
文件 107072 2015-05-21 15:02 SoftwareforPCA9685\Debug\Obj\stm32f10x_it.o
文件 2888 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_lib.o
文件 54028 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_nvic.o
文件 17352 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_pwr.o
文件 57564 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_rcc.o
文件 24800 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_rtc.o
文件 42892 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_spi.o
文件 13136 2016-05-20 11:03 SoftwareforPCA9685\Debug\Obj\stm32f10x_systick.o
............此处省略131个文件信息
评论
共有 条评论