由STM32F103C8T6和ISD1820,LCD1602,按键模块组成的录音设备,写一下ISD1820这一部分代码
时间: 2023-09-30 07:08:37 浏览: 100
ISD1820是一个语音录放模块,需要使用STM32F103C8T6的定时器来控制它的录音和播放。
首先需要定义一些宏和变量:
```
#define ISD_REC 0
#define ISD_PLAY 1
#define ISD_BUSY 1
#define ISD_IDLE 0
uint8_t IsdStatus = ISD_IDLE;
uint8_t IsdCommand = 0;
```
接下来是ISD1820的初始化函数:
```
void IsdInit(void)
{
GPIO_InitTypeDef GPIO_InitStruct;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_1 | GPIO_Pin_2;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStruct);
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStruct);
GPIO_SetBits(GPIOA, GPIO_Pin_1); //SET REC
GPIO_ResetBits(GPIOA, GPIO_Pin_2); //RESET PLAY
}
```
接下来是控制ISD1820进行录音和播放的函数:
```
void IsdStart(uint8_t command)
{
if(IsdStatus == ISD_IDLE)
{
IsdStatus = ISD_BUSY;
IsdCommand = command;
if(command == ISD_REC)
{
GPIO_ResetBits(GPIOA, GPIO_Pin_1); //REC Low
}
else if(command == ISD_PLAY)
{
GPIO_SetBits(GPIOA, GPIO_Pin_2); //PLAY High
}
TIM_Cmd(TIM2, ENABLE);
}
}
void IsdStop(void)
{
TIM_Cmd(TIM2, DISABLE);
if(IsdCommand == ISD_REC)
{
GPIO_SetBits(GPIOA, GPIO_Pin_1); //REC High
}
else if(IsdCommand == ISD_PLAY)
{
GPIO_ResetBits(GPIOA, GPIO_Pin_2); //PLAY Low
}
IsdStatus = ISD_IDLE;
}
```
在以上代码中,IsdStart函数用来启动录音或播放,IsdStop函数用来停止录音或播放。这里使用了定时器TIM2来计时,可以根据需要调整定时器的频率和计数值,从而实现不同的录音和播放时间。
阅读全文