资源简介
STM32F105R读写U盘例程,使用官方库,买的开发板的资料上的例程
代码片段和文件信息
/**************************************************************************//**
* @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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 469072 2013-07-27 17:58 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\IMG_20130727_175508.jpg
文件 314322 2013-07-27 17:58 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\IMG_20130727_175536.jpg
文件 390915 2013-07-27 18:00 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\IMG_20130727_175951.jpg
文件 364103 2013-07-27 18:00 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\IMG_20130727_180004.jpg
文件 17273 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\CoreSupport\core_cm3.c
文件 85714 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
文件 26297 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\Release_Notes.html
文件 15766 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_cl.s
文件 15503 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd.s
文件 15692 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd_vl.s
文件 12376 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_ld.s
文件 13656 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_ld_vl.s
文件 12765 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_md.s
文件 14073 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_md_vl.s
文件 15955 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_xl.s
文件 13072 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_cl.s
文件 13160 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_hd.s
文件 12482 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_hd_vl.s
文件 9814 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_ld.s
文件 10562 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_ld_vl.s
文件 10269 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_md.s
文件 11058 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_md_vl.s
文件 13261 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\gcc_ride7\startup_stm32f10x_xl.s
文件 16626 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_cl.s
文件 16229 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s
文件 15675 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd_vl.s
文件 12650 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_ld.s
文件 12950 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_ld_vl.s
文件 12912 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_md.s
文件 13601 2011-07-25 10:41 9 STM32_F105USB-Host-Device_Lib_V2.0.0 读写U盘例程\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_md_vl.s
............此处省略561个文件信息
- 上一篇:UE4文档物理模拟
- 下一篇:myeclipse-2019.4.x破解工具.zip
相关资源
- 安国系列U盘通用修复工具
- 强力U盘数据恢复软件v3.0.0.1免费安装
- STM32F107读写U盘
- anyreader 存储介质数据恢复
- 金士顿G3U盘量产工具
- 《30天自制操作系统——用U盘启动自
- BANQ U盘量产工具
- 制作U盘病毒过程
- U盘防火墙 源代码 并附解析
- 免费磁盘、U盘数据恢复、删除格式化
- 拷优CopyU!
- USBCleaner V6.0
- 银灿IS903量产工具V1.25
- U盘后台自动拷贝文件工具V5.21最新安
- STM32 USB读取MicroSD卡模拟U盘
- 好用的移动硬盘/U盘加密软件
- QT检测U盘(盘符、产品ID、厂商ID、设
- 内存测试工具+RST+PRO3+USB+IMG+u盘启动版
- 硬盘、U盘数据恢复软件
- U盘当做加密狗授权软件
- 这是国外网友bernat制作的便携版本,
- U盘IAP升级带UCOS
- 英伟达u盘显卡的3d模型
- 电脑文件自动复制到U盘、自动退出。
- 将STM32内部Flash虚拟成U盘通过复制bi
- 火牛开发板STM32+NAND FLASH做U盘
- STM32+USB+W25Q实现U盘程序
- U盘扩容工具
- 使用QT官方库的mqtt客户端
- STM32F207的U盘_USB_IAP升级程序 Bootloade
评论
共有 条评论