资源简介
电子-单相正弦波变频电源.rar,综合电子技术电源技术
代码片段和文件信息
/**************************************************************************//**
* @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-06-07 10:25 Template\CORE\core_cm3.c
文件 85714 2011-02-09 14:59 Template\CORE\core_cm3.h
文件 12765 2011-03-10 10:52 Template\CORE\startup_stm32f10x_md.s
文件 2513 2015-04-03 10:36 Template\HARDWARE\ADC\adc.c
文件 562 2015-02-21 10:57 Template\HARDWARE\ADC\adc.h
文件 1916 2015-02-21 11:08 Template\HARDWARE\DAC\dac.c
文件 699 2015-02-21 11:10 Template\HARDWARE\DAC\dac.h
文件 2291 2015-02-22 11:03 Template\HARDWARE\DMA\dma.c
文件 725 2012-09-16 10:50 Template\HARDWARE\DMA\dma.h
文件 3737 2015-02-06 10:50 Template\HARDWARE\EXTI\exti.c
文件 582 2014-03-20 21:48 Template\HARDWARE\EXTI\exti.h
文件 8560 2015-02-26 18:25 Template\HARDWARE\FLASH\flash.c
文件 1301 2015-02-26 18:23 Template\HARDWARE\FLASH\flash.h
文件 1700 2015-03-13 13:05 Template\HARDWARE\KEY\key.c
文件 878 2015-03-13 13:03 Template\HARDWARE\KEY\key.h
文件 48181 2015-02-18 14:32 Template\HARDWARE\LCD\font.h
文件 19349 2015-02-21 17:04 Template\HARDWARE\LCD\lcd.c
文件 2808 2015-02-21 17:02 Template\HARDWARE\LCD\lcd.h
文件 984083 2015-02-14 12:55 Template\HARDWARE\LCD\pic.c
文件 5119 2015-02-18 10:29 Template\HARDWARE\LCD\zf.c
文件 1339 2015-02-15 14:36 Template\HARDWARE\LED\led.c
文件 671 2015-02-05 20:35 Template\HARDWARE\LED\led.h
文件 7094 2015-02-19 12:33 Template\HARDWARE\RTC\rtc.c
文件 789 2012-08-26 11:54 Template\HARDWARE\RTC\rtc.h
文件 3864 2015-02-26 18:04 Template\HARDWARE\SPI\spi.c
文件 718 2015-02-25 09:31 Template\HARDWARE\SPI\spi.h
文件 9889 2015-04-03 14:34 Template\HARDWARE\SPWM\SPWM.c
文件 148 2015-03-13 10:43 Template\HARDWARE\SPWM\SPWM.h
文件 9451 2015-02-15 12:30 Template\HARDWARE\TIMER\timer.c
文件 729 2015-02-15 21:31 Template\HARDWARE\TIMER\timer.h
............此处省略182个文件信息
评论
共有 条评论