• 大小: 4.84MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-11
  • 语言: 其他
  • 标签: LD3320  语音识别  

资源简介

STM32F103通过并口驱动LD3320语音识别芯片,识别指令串口输出

资源截图

代码片段和文件信息

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

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

     文件     103958  2019-03-30 13:51  LD3320程序+原理图\语音识别.pdf

     文件      17273  2010-06-07 10:25  LD3320程序+原理图\语音识别V16.0\CORE\core_cm3.c

     文件      85714  2011-02-09 14:59  LD3320程序+原理图\语音识别V16.0\CORE\core_cm3.h

     文件      15503  2011-03-10 10:52  LD3320程序+原理图\语音识别V16.0\CORE\startup_stm32f10x_hd.s

     文件        798  2019-03-25 11:16  LD3320程序+原理图\语音识别V16.0\HARDWARE\AUTOCODE\autocode.c

     文件        208  2019-03-25 11:16  LD3320程序+原理图\语音识别V16.0\HARDWARE\AUTOCODE\autocode.h

     文件        448  2019-03-31 10:17  LD3320程序+原理图\语音识别V16.0\HARDWARE\DEVICE\device.c

     文件        197  2019-03-31 10:17  LD3320程序+原理图\语音识别V16.0\HARDWARE\DEVICE\device.h

     文件        749  2018-11-30 09:39  LD3320程序+原理图\语音识别V16.0\HARDWARE\FREQUENCE\freq.c

     文件        127  2018-11-30 09:39  LD3320程序+原理图\语音识别V16.0\HARDWARE\FREQUENCE\freq.h

     文件      16562  2019-03-23 14:12  LD3320程序+原理图\语音识别V16.0\HARDWARE\LD3320\ld3320.c

     文件       5551  2019-03-23 14:12  LD3320程序+原理图\语音识别V16.0\HARDWARE\LD3320\ld3320.h

     文件        763  2019-03-14 15:53  LD3320程序+原理图\语音识别V16.0\HARDWARE\LED\led.c

     文件        500  2019-03-14 15:54  LD3320程序+原理图\语音识别V16.0\HARDWARE\LED\led.h

     文件        790  2019-03-25 11:17  LD3320程序+原理图\语音识别V16.0\HARDWARE\ORDER\order.c

     文件       1942  2019-03-25 11:18  LD3320程序+原理图\语音识别V16.0\HARDWARE\ORDER\order.h

     文件       2718  2019-03-16 16:12  LD3320程序+原理图\语音识别V16.0\HARDWARE\SPI\spi.c

     文件        245  2019-03-14 16:08  LD3320程序+原理图\语音识别V16.0\HARDWARE\SPI\spi.h

     文件      10708  2019-03-19 11:12  LD3320程序+原理图\语音识别V16.0\HARDWARE\SYN8288\syn8288.c

     文件       1914  2018-11-27 10:26  LD3320程序+原理图\语音识别V16.0\HARDWARE\SYN8288\syn8288.h

     文件       1937  2019-03-22 10:59  LD3320程序+原理图\语音识别V16.0\HARDWARE\TIMER\timer.c

     文件        585  2012-09-14 17:59  LD3320程序+原理图\语音识别V16.0\HARDWARE\TIMER\timer.h

     文件        438  2019-04-09 14:11  LD3320程序+原理图\语音识别V16.0\HARDWARE\VOICE\voice.c

     文件        105  2019-04-09 14:11  LD3320程序+原理图\语音识别V16.0\HARDWARE\VOICE\voice.h

     文件       8914  2019-03-14 16:09  LD3320程序+原理图\语音识别V16.0\HARDWARE\W25QXX\w25qxx.c

     文件       1862  2019-03-16 16:19  LD3320程序+原理图\语音识别V16.0\HARDWARE\W25QXX\w25qxx.h

     文件        399  2011-04-23 10:24  LD3320程序+原理图\语音识别V16.0\keilkilll.bat

     文件       4086  2018-12-07 11:20  LD3320程序+原理图\语音识别V16.0\MALLOC\malloc.c

     文件       1240  2019-03-21 16:37  LD3320程序+原理图\语音识别V16.0\MALLOC\malloc.h

     文件     349680  2019-04-09 14:09  LD3320程序+原理图\语音识别V16.0\OBJ\autocode.crf

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

评论

共有 条评论