[mw_shl_code=c,true]/*****************************
说明:ZNE_100TL GPIO初始化
入口参数:无
出口参数:无
******************************/
void ZNE_100TL_GPIOInit()
{
GPIO_InitTypeDef GPIO_InitStructure;//GPIO端口设置
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);//GPIOA时钟
//COM_CFG PA.1
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_Init(GPIOA, &GPIO_InitStructure); //初始化PA1
//USART2_TX PA.2
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出
GPIO_Init(GPIOA, &GPIO_InitStructure); //初始化PA2
//USART2_RX PA.3
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; //上拉输入
GPIO_Init(GPIOA, &GPIO_InitStructure); //初始化PA3
//nRST PA.4
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_Init(GPIOA, &GPIO_InitStructure); //初始化PA4
}
/*****************************
说明:Usart2初始化
入口参数:无
出口参数:无
******************************/
void Usart2_Init(u32 bound)
{
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);//使能USART2
USART_DeInit(USART2); //复位串口2
//USART 初始化设置
USART_InitStructure.USART_BaudRate = bound;//波特率
USART_InitStructure.USART_WordLength = USART_WordLength_8b;//字长为8位数据格式
USART_InitStructure.USART_StopBits = USART_StopBits_1;//一个停止位
USART_InitStructure.USART_Parity = USART_Parity_No;//无奇偶校验位
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;//无硬件数据流控制
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //收发模式
USART_Init(USART2, &USART_InitStructure); //初始化串口
//Usart2 NVIC 配置
NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3 ;//抢占优先级3
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; //子优先级3
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ通道使能
NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器
USART_ITConfig(USART2, USART_IT_RXNE, ENABLE);//开启中断
USART_Cmd(USART2, ENABLE); //使能串口
}[/mw_shl_code]
[mw_shl_code=c,true]/*****************************
说明:串口字符串发送函数
入口参数:u8 *str
出口参数:无
******************************/
void USART_SendStr(u8 *str)
{
while(*str!='\0')
{
USART_SendData(USART2,*str);
while(USART_GetFlagStatus(USART2,USART_FLAG_TXE)!= SET);
str++;
}
}
/*****************************
说明:ZNE_100TL命令配置函数
入口参数:无
出口参数:无
******************************/
void ZNE_100TL_Config()
{
GPIO_ResetBits(GPIOA,GPIO_Pin_1);//COM_CFG 置低
delay_ms(200);
USART_SendStr("at+mode=0\r\n");
USART_SendStr("at\r\n");
}
/*****************************
说明:main主函数
入口参数:无
出口参数:无
******************************/
int main(void)
{
ZNE_100TL_GPIOInit();
delay_init();
Usart2_Init(9600);
ZNE_100TL_Config();
while(1)
{
USART_SendStr("at+exit\r\n");
}
}
[/mw_shl_code]
|