资源简介
有人说以前的编译不过,不能用所以做了这个简单编译工程来示范怎么用SLICKETDIT 编译STM32,具体说明会有一个简单的说明文件在工程目录下面。
这是比较详细的版本, 也是个工程模版, 没有添加多余代码。不过因为有说明了, 所以也就不会专门做文章出来(虽然如此,但是写说明文件还是花了我两个小时。。。打字慢真的伤不起。)
分数嘛。。。以前大家给太多了, 现在基本上是用不完的,不用给了。
代码片段和文件信息
/**************************************************************************//**
* @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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 85714 2011-02-09 14:59 SlickeditComplieStm32\RVMDK\V0.2\CMSIS\INC\core_cm3.h
文件 633941 2011-03-10 10:51 SlickeditComplieStm32\RVMDK\V0.2\CMSIS\INC\stm32f10x.h
文件 2085 2011-03-10 10:51 SlickeditComplieStm32\RVMDK\V0.2\CMSIS\INC\system_stm32f10x.h
文件 17273 2010-06-07 10:25 SlickeditComplieStm32\RVMDK\V0.2\CMSIS\SRC\core_cm3.c
文件 10343 2013-03-28 10:55 SlickeditComplieStm32\RVMDK\V0.2\Project.vpj
文件 202 2013-03-27 14:02 SlickeditComplieStm32\RVMDK\V0.2\Project.vpw
文件 797 2013-03-28 11:08 SlickeditComplieStm32\RVMDK\V0.2\Project.vpwhist
文件 1728512 2013-03-27 14:11 SlickeditComplieStm32\RVMDK\V0.2\Project.vtg
文件 4197 2013-03-28 11:05 SlickeditComplieStm32\RVMDK\V0.2\ReadMe.txt
文件 479 2013-03-26 17:17 SlickeditComplieStm32\RVMDK\V0.2\StartUp\Project.sct
文件 15766 2011-03-10 10:52 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_cl.s
文件 15503 2011-03-10 10:52 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_hd.s
文件 15692 2011-03-10 10:52 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_hd_vl.s
文件 12376 2013-03-27 13:23 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_ld.s
文件 13656 2011-03-10 10:52 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_ld_vl.s
文件 12765 2011-03-10 10:52 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_md.s
文件 14073 2011-03-10 10:51 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_md_vl.s
文件 15955 2011-03-10 10:51 SlickeditComplieStm32\RVMDK\V0.2\StartUp\startup_stm32f10x_xl.s
文件 8982 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\misc.h
文件 21690 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_adc.h
文件 7555 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_bkp.h
文件 27559 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_can.h
文件 6573 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_cec.h
文件 2162 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_crc.h
文件 15233 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_dac.h
文件 3818 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_dbgmcu.h
文件 20754 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_dma.h
文件 6824 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_exti.h
文件 25445 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_flash.h
文件 27016 2011-03-10 10:47 SlickeditComplieStm32\RVMDK\V0.2\Stm32Lib\inc\stm32f10x_fsmc.h
............此处省略55个文件信息
- 上一篇:VHDL的SPI控制
- 下一篇:图书馆管理系统设计论文
相关资源
- uIP STM32 TCP Echo
- STM32 TFT液晶驱动与JPEG解码图象显示
- stm32 4*4矩阵键盘
- STM32 步进电机程序 包括加减速 位置模
- STM32F107实现DP83848-UDP-TCP通信程序
- 基于STM32的无位置传感器无刷直流电机
- STM32系列串口烧写工具
- stm32驱动舵机
- WS2812驱动程序SPI+DMA
- STM32固件库文件树及作用详述
- STM32输入捕获PWM,航模遥控器调试。
- stm32_ldwm1000_uwb _twr_all.zip
- DAC8552驱动程序stm32
- 基于STM32的温度采集系统设计.docx
- zw_STM32F1012864液晶字库.zip
- STM32_OLED_三级菜单框架.rar
- IIC通讯,实现多组端口使用
- 板球系统.txt
- STM32F4定时器4输出4路PWM波(寄存器)
- 基于stm32、0.96寸OLED实现的贪吃蛇小游
- STM32最小系统原理图pcb图
- TI杯A题解答
- 适用于2016年省赛电子设计竞赛自动循
- 蓝桥杯嵌入式省赛及国赛所有赛题代
- STM32F103RCT6.zip
- 微雪2.9 E-paper.zip
- 步进初级3--6路步进电机速度控制函数
- STM32精准控制PWM脉冲数_库函数版
- 如何基于STM32系列单片机实现加密保护
- 电子-基于战舰版RC522IIC.rar
评论
共有 条评论