• 大小: 755KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: 其他
  • 标签: STM32  

资源简介

利用GPIO控制无源蜂鸣器发声,播放音乐。使用SysTick延时,使用位带操作寻址IO口引脚。

资源截图

代码片段和文件信息

/**************************************************************************//**
 * @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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1690  2018-05-10 10:55  User\Beep\beep.c

     文件        449  2018-05-10 10:39  User\Beep\beep.h

     文件        128  2018-05-10 11:00  User\main.c

    .......     71104  2018-05-10 11:11  pMusic.uvguix.Administrator

    .......     10366  2018-05-10 11:11  pMusic.uvoptx

    .......     17317  2018-05-10 11:11  pMusic.uvprojx

     文件      17273  2010-06-07 10:25  CMSIS\core_cm3.c

     文件      85714  2011-02-09 14:59  CMSIS\core_cm3.h

     文件       6956  2015-12-10 17:06  DebugConfig\Target_1_STM32F103ZE_1.0.0.dbgconf

     文件     634693  2018-05-06 09:16  Device\stm32f10x.h

     文件      36557  2011-03-10 10:51  Device\system_stm32f10x.c

     文件       2085  2011-03-10 10:51  Device\system_stm32f10x.h

     文件       8982  2011-03-10 10:47  Lib\inc\misc.h

     文件      20175  2011-03-10 10:47  Lib\inc\stm32f10x_gpio.h

     文件      30452  2011-03-10 10:47  Lib\inc\stm32f10x_rcc.h

     文件       7046  2011-03-10 10:47  Lib\src\misc.c

     文件      23221  2018-05-06 08:07  Lib\src\stm32f10x_gpio.c

     文件      51271  2011-03-10 10:47  Lib\src\stm32f10x_rcc.c

     文件      64982  2018-05-10 11:01  Listings\pMusic.map

     文件      51086  2018-05-10 10:59  Listings\startup_stm32f10x_hd.lst

     文件     238570  2018-05-10 10:59  objects\beep.crf

     文件        427  2018-05-10 10:59  objects\beep.d

     文件     257720  2018-05-10 10:59  objects\beep.o

     文件       3940  2018-05-10 10:59  objects\core_cm3.crf

     文件        108  2018-05-10 10:59  objects\core_cm3.d

     文件      10952  2018-05-10 10:59  objects\core_cm3.o

     文件     238042  2018-05-10 11:01  objects\main.crf

     文件        424  2018-05-10 11:01  objects\main.d

     文件     254108  2018-05-10 11:01  objects\main.o

     文件     224336  2018-05-10 10:59  objects\misc.crf

............此处省略42个文件信息

评论

共有 条评论