isd4004_stm32_usart

所属分类:单片机开发
开发工具:C/C++
文件大小:6512KB
下载次数:26
上传日期:2013-07-18 21:04:26
上 传 者wangzheng12
说明:  isd4004语音芯片,stm32控制,功能是录一段放一段,录的地址是一样的,掉电后录的还存在,这是个最简单的录放程序。
(isd4004 voice chip, stm32 control function is to record a put a recorded address is the same, there are still recorded after power, which is the most simple recording program.)

文件列表:
isd4004_stm32_Usart\isd4004_51.jpg (115216, 2013-07-03)
isd4004_stm32_Usart\Lib (0, 2013-06-03)
isd4004_stm32_Usart\Lib\cmsis (0, 2013-07-02)
isd4004_stm32_Usart\Lib\cmsis\core_cm3.c (17273, 2012-10-23)
isd4004_stm32_Usart\Lib\cmsis\core_cm3.h (85714, 2012-10-23)
isd4004_stm32_Usart\Lib\cmsis\stm32f10x.h (633941, 2012-10-23)
isd4004_stm32_Usart\Lib\cmsis\stm32f10x_systick.c (5937, 2012-10-23)
isd4004_stm32_Usart\Lib\cmsis\stm32f10x_systick.h (3092, 2012-10-23)
isd4004_stm32_Usart\Lib\cmsis\system_stm32f10x.h (2085, 2012-10-23)
isd4004_stm32_Usart\Lib\inc (0, 2013-06-03)
isd4004_stm32_Usart\Lib\inc\misc.h (8982, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_adc.h (21690, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_bkp.h (7555, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_can.h (27559, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_cec.h (6573, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_crc.h (2162, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_dac.h (15233, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_dbgmcu.h (3818, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_dma.h (20754, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_exti.h (6824, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_flash.h (25445, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_fsmc.h (27016, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_gpio.h (20175, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_i2c.h (30029, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_iwdg.h (3828, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_pwr.h (4383, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_rcc.h (30452, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_rtc.h (3857, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_sdio.h (21863, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_spi.h (17725, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_tim.h (52427, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_usart.h (16548, 2012-10-23)
isd4004_stm32_Usart\Lib\inc\stm32f10x_wwdg.h (2966, 2012-10-23)
isd4004_stm32_Usart\Lib\src (0, 2013-06-03)
isd4004_stm32_Usart\Lib\src\misc.c (7046, 2012-10-23)
isd4004_stm32_Usart\Lib\src\stm32f10x_adc.c (47201, 2012-10-23)
isd4004_stm32_Usart\Lib\src\stm32f10x_bkp.c (8463, 2012-10-23)
isd4004_stm32_Usart\Lib\src\stm32f10x_can.c (45103, 2012-10-23)
isd4004_stm32_Usart\Lib\src\stm32f10x_cec.c (11656, 2012-10-23)
isd4004_stm32_Usart\Lib\src\stm32f10x_crc.c (3347, 2012-10-23)
... ...

/* Configure SPI2 pins: SCK, MISO and MOSI -------------*/ GPIO_InitStructure.GPIO_Pin =GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_Init(GPIOB, &GPIO_InitStructure); // 片选 GPIO_InitStructure.GPIO_Pin=GPIO_Pin_12; GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz; GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP; GPIO_Init(GPIOB, &GPIO_InitStructure); //使能端 GPIO_InitStructure.GPIO_Pin=GPIO_Pin_11; GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz; GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP; GPIO_Init(GPIOB, &GPIO_InitStructure); //复位端 GPIO_InitStructure.GPIO_Pin=GPIO_Pin_10; GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz; GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP; GPIO_Init(GPIOB, &GPIO_InitStructure); spi2 对应管脚

近期下载者

相关文件


收藏者