资源简介
基于STM32的远程视频传输.带源码和详细教程
代码片段和文件信息
/******************************************************************************
* @file: core_cm3.c
* @purpose: CMSIS Cortex-M3 Core Peripheral Access layer Source File
* @version: V1.20
* @date: 22. May 2009
*----------------------------------------------------------------------------
*
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* ARM Limited (ARM) is supplying this software for use with Cortex-Mx
* processor based microcontrollers. This file can be freely distributed
* within development tools that are supporting such ARM based processors.
*
* 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 armcc */
#define __INLINE __inline /*!< inline keyword for armcc */
#elif defined ( __ICCARM__ )
#define __ASM __asm /*!< asm keyword for iarcc */
#define __INLINE inline /*!< inline keyword for iarcc. Only avaiable in High optimization mode! */
#elif defined ( __GNUC__ )
#define __ASM __asm /*!< asm keyword for gcc */
#define __INLINE inline /*!< inline keyword for gcc */
#elif defined ( __TASKING__ )
#define __ASM __asm /*!< asm keyword for TASKING Compiler */
#define __INLINE inline /*!< inline keyword for TASKING Compiler */
#endif
#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
/**
* @brief Return the Process Stack Pointer
*
* @param none
* @return uint32_t 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 uint32_t Process Stack Pointer
* @return none
*
* 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
*
* @param none
* @return uint32_t Main Stack Pointer
*
* Return the current value of the MSP (main stack pointer)
* Cortex processor register
*/
__ASM uint32_t __get_MSP(void)
{
mrs r0 msp
bx lr
}
/**
* @brief Set the Main Stack Pointer
*
* @param uint32_t Main Stack Pointer
* @return none
*
*
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17206 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\core_cm3.c
文件 46533 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\core_cm3.h
文件 15600 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\arm\startup_stm32f10x_cl.s
文件 15872 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\arm\startup_stm32f10x_hd.s
文件 12164 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\arm\startup_stm32f10x_ld.s
文件 12564 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\arm\startup_stm32f10x_md.s
文件 12917 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\gcc\startup_stm32f10x_cl.s
文件 13560 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\gcc\startup_stm32f10x_hd.s
文件 9830 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\gcc\startup_stm32f10x_ld.s
文件 10340 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\gcc\startup_stm32f10x_md.s
文件 16309 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\iar\startup_stm32f10x_cl.s
文件 16709 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\iar\startup_stm32f10x_hd.s
文件 12333 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\iar\startup_stm32f10x_ld.s
文件 12594 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\startup\iar\startup_stm32f10x_md.s
文件 593385 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\stm32f10x.h
文件 30622 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\system_stm32f10x.c
文件 2404 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\CM3\system_stm32f10x.h
文件 52463 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\Core\Documentation\CMSIS_Core.htm
文件 39936 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\CMSIS\License.doc
文件 5544 2012-07-31 08:48 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\arp.c
文件 1886 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\arp.h
文件 1935 2012-07-31 08:48 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\ethernet.c
文件 777 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\ethernet.h
文件 623 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\includes.h
文件 2809 2012-07-31 08:48 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\ip.c
文件 1463 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\ip.h
文件 4458 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\struct.h
文件 3019 2012-07-31 08:48 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\udp.c
文件 1009 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\Network\udp.h
文件 8893 2012-07-31 03:45 STM32实现远程视频采集信号,和远程控制,基于UDP库\code mutli-processor control\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h
............此处省略356个文件信息
- 上一篇:锅炉原理课程设计程序
- 下一篇:排队叫号声音(标准普通话)
相关资源
- MPU6050姿态解算STM32源码卡尔曼滤波
- mpu6050程序 stm32
- STM32F103+HMC5883L
- STM32DS18B20程序
- 基于STM32光电编码器测速
- freemodbus RTU移植stm32过程代码
- stm32读取ADXL345加速度传感器数据IIC协
- IAP——STM32官网USART例程——编译直接
- STM32F蓝牙超声波避障小车
- F103单定时器4路任意频率PWM输出实验
- STM32F103驱动DHT22温湿度传感器、BH175
- 抢答器.rar
- stm32麦轮小车源码
- STM32F103超精准步进电机定角oled显示角
- TFTLCD实时绘制曲线曲线动态更新
- wenshidushangweiji.rar
- STM32F103ZET6通过max30102模块简单测试心
- 基于STM32单片机的DHT11数字传感器代码
- DS18B20温度传感器模块使用资料包stm
- 基于stm32的ads1115驱动程序
- MAX30102心率和血氧STM32F103ZET6
- stm32f103驱动迪文屏幕DWIN
- stm32+GY-85九轴传感器
- 水墨屏 stm32f103核心板
- OLED stm32f4程序
- KS103 stm32f407程序
- LDC1000模块 STM32f103程序
- 利用STM32读取MPU6050三个角度的值,通
- STM32F103 实现SI4432通讯 测试成功
- 8乘*8无冲突矩阵键盘STM32程序
评论
共有 条评论