中级会员
 
- 积分
- 494
- 金钱
- 494
- 注册时间
- 2018-9-3
- 在线时间
- 50 小时
|
发表于 2018-11-8 17:24:08
|
显示全部楼层
[mw_shl_code=c,true]#include "sys.h"
#include "usart.h"
#pragma import(__use_no_semihosting_swi)
int SER_PutChar (int c) {
#ifdef __DBG_ITM
ITM_SendChar(c);
#else
while (!(USART2->SR & USART_SR_TXE));
USART2->DR = (c & 0x1FF);
#endif
return (c);
}
struct __FILE { int handle; /* Add whatever you need here */ };
FILE __stdout;
FILE __stdin;
FILE __stderr;
int fputc(int c, FILE *f) {
if (c == '\n') {
SER_PutChar('\r');
}
return (SER_PutChar(c));
}
void My_USART_Init(void)
{
GPIO_InitTypeDef GPIO_A_InitStrue;
GPIO_InitTypeDef GPIO_B_InitStrue;
GPIO_InitTypeDef GPIO_C_InitStrue;
GPIO_InitTypeDef GPIO_D_InitStrue;
USART_InitTypeDef USART_1_InitStrue;
USART_InitTypeDef USART_2_InitStrue;
USART_InitTypeDef USART_3_InitStrue;
USART_InitTypeDef UART_4_InitStrue;
USART_InitTypeDef UART_5_InitStrue;
NVIC_InitTypeDef NVIC_1_InitStrue;
NVIC_InitTypeDef NVIC_2_InitStrue;
NVIC_InitTypeDef NVIC_3_InitStrue;
NVIC_InitTypeDef NVIC_4_InitStrue;
NVIC_InitTypeDef NVIC_5_InitStrue;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOC|RCC_APB2Periph_GPIOD|RCC_APB2Periph_USART1,ENABLE);
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2|RCC_APB1Periph_USART3|RCC_APB1Periph_UART4|RCC_APB1Periph_UART5,ENABLE);
GPIO_A_InitStrue.GPIO_Mode=GPIO_Mode_AF_PP;
GPIO_A_InitStrue.GPIO_Pin=GPIO_Pin_2|GPIO_Pin_9;
GPIO_A_InitStrue.GPIO_Speed=GPIO_Speed_10MHz;
GPIO_Init(GPIOA,&GPIO_A_InitStrue);
GPIO_A_InitStrue.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_A_InitStrue.GPIO_Pin=GPIO_Pin_3|GPIO_Pin_10;
GPIO_A_InitStrue.GPIO_Speed=GPIO_Speed_10MHz;
GPIO_Init(GPIOA,&GPIO_A_InitStrue);
//配置B口
GPIO_B_InitStrue.GPIO_Mode=GPIO_Mode_AF_PP;
GPIO_B_InitStrue.GPIO_Pin=GPIO_Pin_10;
GPIO_B_InitStrue.GPIO_Speed=GPIO_Speed_10MHz;
GPIO_Init(GPIOB,&GPIO_B_InitStrue);
GPIO_B_InitStrue.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_B_InitStrue.GPIO_Pin=GPIO_Pin_11;
GPIO_B_InitStrue.GPIO_Speed=GPIO_Speed_10MHz;
GPIO_Init(GPIOB,&GPIO_B_InitStrue);
//配置C口
GPIO_C_InitStrue.GPIO_Mode=GPIO_Mode_AF_PP;
GPIO_C_InitStrue.GPIO_Pin=GPIO_Pin_10|GPIO_Pin_12;
GPIO_C_InitStrue.GPIO_Speed=GPIO_Speed_10MHz;
GPIO_Init(GPIOC,&GPIO_C_InitStrue);
GPIO_C_InitStrue.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_C_InitStrue.GPIO_Pin=GPIO_Pin_11;
GPIO_C_InitStrue.GPIO_Speed=GPIO_Speed_10MHz;
GPIO_Init(GPIOC,&GPIO_C_InitStrue);
//配置D口
GPIO_D_InitStrue.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_D_InitStrue.GPIO_Pin=GPIO_Pin_2;
GPIO_D_InitStrue.GPIO_Speed=GPIO_Speed_10MHz;
GPIO_Init(GPIOD,&GPIO_D_InitStrue);
//串口1配置
USART_1_InitStrue.USART_BaudRate=9600;
USART_1_InitStrue.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
USART_1_InitStrue.USART_Mode=USART_Mode_Tx|USART_Mode_Rx;
USART_1_InitStrue.USART_Parity=USART_Parity_No;
USART_1_InitStrue.USART_StopBits=USART_StopBits_1;
USART_1_InitStrue.USART_WordLength=USART_WordLength_8b;
USART_Init(USART1,&USART_1_InitStrue);
//串口2配置
USART_2_InitStrue.USART_BaudRate=9600;
USART_2_InitStrue.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
USART_2_InitStrue.USART_Mode=USART_Mode_Tx|USART_Mode_Rx;
USART_2_InitStrue.USART_Parity=USART_Parity_No;
USART_2_InitStrue.USART_StopBits=USART_StopBits_1;
USART_2_InitStrue.USART_WordLength=USART_WordLength_8b;
USART_Init(USART2,&USART_2_InitStrue);
//串口3配置
USART_3_InitStrue.USART_BaudRate=9600;
USART_3_InitStrue.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
USART_3_InitStrue.USART_Mode=USART_Mode_Tx|USART_Mode_Rx;
USART_3_InitStrue.USART_Parity=USART_Parity_No;
USART_3_InitStrue.USART_StopBits=USART_StopBits_1;
USART_3_InitStrue.USART_WordLength=USART_WordLength_8b;
USART_Init(USART3,&USART_3_InitStrue);
//串口4配置
UART_4_InitStrue.USART_BaudRate=9600;
UART_4_InitStrue.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
UART_4_InitStrue.USART_Mode=USART_Mode_Tx|USART_Mode_Rx;
UART_4_InitStrue.USART_Parity=USART_Parity_No;
UART_4_InitStrue.USART_StopBits=USART_StopBits_1;
UART_4_InitStrue.USART_WordLength=USART_WordLength_8b;
USART_Init(UART4,&UART_4_InitStrue);
//串口5配置
UART_5_InitStrue.USART_BaudRate=9600;
UART_5_InitStrue.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
UART_5_InitStrue.USART_Mode=USART_Mode_Tx|USART_Mode_Rx;
UART_5_InitStrue.USART_Parity=USART_Parity_No;
UART_5_InitStrue.USART_StopBits=USART_StopBits_1;
UART_5_InitStrue.USART_WordLength=USART_WordLength_8b;
USART_Init(UART5,&UART_5_InitStrue);
//串口使能
USART_Cmd(USART1,ENABLE);
USART_Cmd(USART2,ENABLE);
USART_Cmd(USART3,ENABLE);
USART_Cmd(UART4,ENABLE);
USART_Cmd(UART5,ENABLE);
//判断串口是否触发接受
USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);
USART_ITConfig(USART2,USART_IT_RXNE,ENABLE);
USART_ITConfig(USART3,USART_IT_RXNE,ENABLE);
USART_ITConfig(UART4,USART_IT_RXNE,ENABLE);
USART_ITConfig(UART5,USART_IT_RXNE,ENABLE);
//中断配置
NVIC_1_InitStrue.NVIC_IRQChannel=USART1_IRQn;
NVIC_1_InitStrue.NVIC_IRQChannelCmd=ENABLE;
NVIC_1_InitStrue.NVIC_IRQChannelPreemptionPriority=1;
NVIC_1_InitStrue.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_1_InitStrue);
NVIC_2_InitStrue.NVIC_IRQChannel=USART2_IRQn;
NVIC_2_InitStrue.NVIC_IRQChannelCmd=ENABLE;
NVIC_2_InitStrue.NVIC_IRQChannelPreemptionPriority=1;
NVIC_2_InitStrue.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_2_InitStrue);
NVIC_3_InitStrue.NVIC_IRQChannel=USART3_IRQn;
NVIC_3_InitStrue.NVIC_IRQChannelCmd=ENABLE;
NVIC_3_InitStrue.NVIC_IRQChannelPreemptionPriority=1;
NVIC_3_InitStrue.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_3_InitStrue);
NVIC_4_InitStrue.NVIC_IRQChannel=UART4_IRQn;
NVIC_4_InitStrue.NVIC_IRQChannelCmd=ENABLE;
NVIC_4_InitStrue.NVIC_IRQChannelPreemptionPriority=1;
NVIC_4_InitStrue.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_4_InitStrue);
NVIC_5_InitStrue.NVIC_IRQChannel=UART5_IRQn;
NVIC_5_InitStrue.NVIC_IRQChannelCmd=ENABLE;
NVIC_5_InitStrue.NVIC_IRQChannelPreemptionPriority=1;
NVIC_5_InitStrue.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_5_InitStrue);
}
void USART1_IRQHandler(void)
{
u8 Res;
if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)
{
Res =USART_ReceiveData(USART1);
Res++;
USART_SendData(USART1, Res);
}
}
void USART2_IRQHandler(void)
{
u8 Res;
if(USART_GetITStatus(USART2, USART_IT_RXNE) != RESET)
{
Res =USART_ReceiveData(USART2);
Res++;
USART_SendData(USART2, Res);
}
}void USART3_IRQHandler(void)
{
u8 Res;
if(USART_GetITStatus(USART3, USART_IT_RXNE) != RESET)
{
Res =USART_ReceiveData(USART3);
Res++;
USART_SendData(USART3, Res);
}
}void UART4_IRQHandler(void)
{
u8 Res;
if(USART_GetITStatus(UART4, USART_IT_RXNE) != RESET)
{
Res =USART_ReceiveData(UART4);
Res++;
USART_SendData(UART4, Res);
}
}
void UART5_IRQHandler(void)
{
u8 Res;
if(USART_GetITStatus(UART5, USART_IT_RXNE) != RESET)
{
Res =USART_ReceiveData(UART5);
Res++;
USART_SendData(UART5, Res);
}
}
[/mw_shl_code]
|
|