/*****************************************************************************************
该实验通过WIFI转串口模式,网络到串口的数据流向是:计算机网络->模块 WIFI->模块串口->计算机串口。
通过配置串口2就可实现此功能,功能如下:当网络向串口发送数据,如果串口接收到了,则LED灯做出相应反应
******************************************************************************************/
#include "WIFI.h"
#include "key.h"
#include "led.h"
// 串口2时钟使能, GPIOA 时钟使能,复用时钟使能
void RCC_Configuration(void)
{
SystemInit();//72m
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);;
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);
}
//初始化串口2 GPIOA2,发送。GPIOA3接收
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_2;//TX
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;
GPIO_Init(GPIOA,&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_3;//RX
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA,&GPIO_InitStructure);
}
//初始化 NVIC
void NVIC_Configuration(void)
{
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
}
//串口2配置初始化
void USART_Configuration(void)
{
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate=115200;
USART_InitStructure.USART_WordLength=USART_WordLength_8b;
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);
/***************************************
开启中断,中断服务函数在stm32f10x_it.c里面
****************************************/
USART_ITConfig(USART2,USART_IT_RXNE,ENABLE);
//使能串口2
USART_Cmd(USART2,ENABLE);
USART_ClearFlag(USART2,USART_FLAG_TC);
}
/*****************************************************
配置WIFI出厂设置PB6为低有效,配置WIFI模组复位PB7低电平有效
(这部分可要也可不要,不要则管脚悬空)PZ(配置)
******************************************************/
//void PZ(void)
//{
// char i;
// i=KEY_Scan(0);//不支持连按
// if(i==1)GPIO_ResetBits (GPIOE, GPIO_Pin_6);
// if(i==2)GPIO_ResetBits (GPIOE, GPIO_Pin_7);
//
//}
|