资源简介
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个文件信息
- 上一篇:Windchill常用开发大全
- 下一篇:QCustomPlot 实验demo
相关资源
- 树莓派语音识别科大讯飞语音识别离
- 基于Arduino的智能家居语音识别系统设
- 语音识别资料和源码
- LD3320语音识别模块
- 组合数学第四版答案
- 语音识别基本法
- qt实现科大讯飞在线语音识别
- 极简单的讯飞语音识别Demo
- 基于STM32F429的语音识别交互系统
- 语音识别数据集-speech analytic--性别识
- WIN732位语音识别组件包
- 说话人识别数据集--Spoken Speaker Ident
- 语音识别demo
- STM32语音识别资料
- 基于STM32F4VET6开发板的智能语音识别系
- 威凯特ISD9160语音识别例程
- YS-V0.7语音识别模块_配套资料
- Arduino HBR740语音识别
- 实用语音识别基础电子版
- 语音识别 自然语言信号处理 Speech a
- 百度语音识别/唤醒Test
- stm32 YS-LDV4语音识别开发板
- 粒子滤波算法及其应用--朱志宇
- 基于STM32的LD3320语音识别程序
- 语音识别 论文合集
- 基于探索者F4开发板的智能语音识别系
- 基于K-NN的语音情感识别
- Unity+讯飞语音识别
- esp32-Lyratd-msc 语音识别板使用指南
- 基于单片机的语音识别声控系统设计
评论
共有 条评论