资源简介
使用16M外部晶振
如不一样请重定义HSE_VALUE这个值
及修改SystemInit这个函数
IAP留有12K空间
因用485半双工通信
去掉读芯片程序功能
485芯片使能脚用三极管控制,不用程序控制
使用Keil4.5编译的STM32-IAP源程序,是我根据管网程序改过来的,原来是要用按键进入IAP,现在只要在上电连续输入a键进入IAP,如上电发现没有应用程序则只接进入IAP,我用的芯片是STM32F103RCT6,外部晶振是16M,默认波特率是115200,用超级终端Ymodem协议通信,我已测试通过了,不过我的应用程序是用IAR编译的,IAR4.42很老的版本,需要改lnkarm_flash.xcl这个文件里的DROMSTART值,DROMSTART=0x8003000;如果是用keil编译应用程序,则要改IROM1定义的START值,同样也是改成0x8003000
代码片段和文件信息
/**************************************************************************//**
* @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-04-23 10:40 Keil4.5-STM32-IAP\CMSIS\core_cm3.c
文件 85714 2010-04-23 10:40 Keil4.5-STM32-IAP\CMSIS\core_cm3.h
文件 15503 2011-03-10 10:52 Keil4.5-STM32-IAP\CMSIS\startup_stm32f10x_hd.s
文件 4671 2012-12-18 09:50 Keil4.5-STM32-IAP\CMSIS\stm32f10x_it.c
文件 4473 2012-12-18 20:29 Keil4.5-STM32-IAP\CMSIS\system_stm32f10x.c
文件 63691 2012-12-21 11:27 Keil4.5-STM32-IAP\IAP电路.pdf
文件 3155 2012-12-20 11:03 Keil4.5-STM32-IAP\include\common.h
文件 198 2012-12-20 11:07 Keil4.5-STM32-IAP\include\main.h
文件 274 2012-12-18 16:24 Keil4.5-STM32-IAP\include\STM32Config.h
文件 634005 2012-12-14 12:01 Keil4.5-STM32-IAP\include\stm32f10x.h
文件 3259 2011-04-04 19:03 Keil4.5-STM32-IAP\include\stm32f10x_conf.h
文件 2146 2012-07-16 17:36 Keil4.5-STM32-IAP\include\stm32f10x_it.h
文件 2085 2011-03-10 10:51 Keil4.5-STM32-IAP\include\system_stm32f10x.h
文件 1898 2011-04-29 15:33 Keil4.5-STM32-IAP\include\ymodem.h
文件 358327 2012-12-21 10:40 Keil4.5-STM32-IAP\Project\common.crf
文件 1484 2012-12-21 11:00 Keil4.5-STM32-IAP\Project\common.d
文件 4816 2012-12-21 11:00 Keil4.5-STM32-IAP\Project\common.o
文件 3530 2012-12-21 10:40 Keil4.5-STM32-IAP\Project\core_cm3.crf
文件 76 2012-12-21 11:00 Keil4.5-STM32-IAP\Project\core_cm3.d
文件 2144 2012-12-21 11:00 Keil4.5-STM32-IAP\Project\core_cm3.o
文件 380141 2012-07-20 16:18 Keil4.5-STM32-IAP\Project\diskio.crf
文件 1890 2012-07-20 16:18 Keil4.5-STM32-IAP\Project\diskio.d
文件 2184 2012-07-20 16:18 Keil4.5-STM32-IAP\Project\diskio.o
文件 356037 2012-12-21 10:40 Keil4.5-STM32-IAP\Project\download.crf
文件 1556 2012-12-21 11:00 Keil4.5-STM32-IAP\Project\download.d
文件 2336 2012-12-21 11:00 Keil4.5-STM32-IAP\Project\download.o
文件 378590 2012-08-15 17:13 Keil4.5-STM32-IAP\Project\eepromi2c.crf
文件 2031 2012-08-15 17:13 Keil4.5-STM32-IAP\Project\eepromi2c.d
文件 3720 2012-08-15 17:13 Keil4.5-STM32-IAP\Project\eepromi2c.o
文件 377379 2012-08-15 17:13 Keil4.5-STM32-IAP\Project\fat.crf
............此处省略183个文件信息
相关资源
- 基于STM32的太阳能供电智能花盆
- STM32接入机智云工具包
- STM32光敏传感器
- STM32MAX30100程序
- STM32F103VE_NRF24L01_GPIO模拟SPI通讯程序
- 基于stm32的韦根26发送程序
- STM32F107读写U盘
- 浅谈工程师的调试法宝1-5.zip
- STM32串口USART2发送接收程序
- STM32F103工程
- stm32 modbus主机程序125364
- 基于stm32库3.5的小车红外避障程序
- STM32驱动OV7620摄像头
- STM32F407-四路超声波测距代码
- 基于STM32的MLX90614测温显示.rar
- stm32韦根通信协议
- STM32F103C8T6蓝牙点亮LED
- STM32 LCD12864带日历时钟功能的电子密
- STM32光电开关代码
- stm32f103系列1602液晶屏驱动程序
- 基于STM32的proteus仿真——扫地机器人
- STM32F103VET6 PWM之通用定时器输出带死区
- 基于stm32炜盛zh03b的PM2.5、PM1、PM10采集
- 无线充电RX端程序代码
- 基于stm32f103c8t6 + 机智云的环境监测
- stm32矩阵按键
- stm32 pwm输出
- stm32蓝牙控制机械臂3个舵机校赛用的
- stm32f407实现串口收发
- 使用STM32控制多个步进电机
评论
共有 条评论