85 lines
2.6 KiB
C
85 lines
2.6 KiB
C
/*
|
|
*********************************************************************************************************
|
|
* IAR Development Kits
|
|
* on the
|
|
*
|
|
* M451
|
|
*
|
|
* Filename : uart_console.c
|
|
* Version : V1.00
|
|
* Programmer(s) : Qian Xianghong
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
* INCLUDE FILES
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "stm32l4xx_hal_uart.h"
|
|
#pragma import(__use_no_semihosting)
|
|
/* ?????????? */
|
|
struct __FILE {
|
|
int handle;
|
|
};
|
|
|
|
/* FILE ?stdio.h?? */
|
|
FILE __stdout;
|
|
|
|
/* ??_sys_exit()?????????? */
|
|
void _sys_exit(int x)
|
|
{
|
|
x = x;
|
|
}
|
|
|
|
int fputc(int ch, FILE *stream)
|
|
{
|
|
while((USART1->ISR & UART_FLAG_TC) == 0);
|
|
USART1->TDR = (uint8_t) ch;
|
|
return ch;
|
|
}
|
|
void Console_Init()
|
|
{
|
|
LL_GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
|
|
LL_AHB2_GRP1_EnableClock(LL_AHB2_GRP1_PERIPH_GPIOA);
|
|
/**USART2 GPIO Configuration
|
|
PA9 ------> USART1_TX
|
|
PA10 ------> USART1_RX
|
|
*/
|
|
GPIO_InitStruct.Pin = LL_GPIO_PIN_9|LL_GPIO_PIN_10;
|
|
GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE;
|
|
GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_MEDIUM;
|
|
GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
GPIO_InitStruct.Pull = LL_GPIO_PULL_NO;
|
|
GPIO_InitStruct.Alternate = LL_GPIO_AF_7;
|
|
LL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
}
|
|
|
|
void Console_Open()
|
|
{
|
|
LL_USART_InitTypeDef USART_InitStruct = {0};
|
|
|
|
/* Peripheral clock enable */
|
|
//LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_USART2);
|
|
LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_USART1);
|
|
/* USART2 interrupt Init */
|
|
NVIC_SetPriority(USART1_IRQn, NVIC_EncodePriority(NVIC_GetPriorityGrouping(),5, 0));
|
|
NVIC_EnableIRQ(USART1_IRQn);
|
|
|
|
USART_InitStruct.BaudRate = 115200;
|
|
USART_InitStruct.DataWidth = LL_USART_DATAWIDTH_8B;
|
|
USART_InitStruct.StopBits = LL_USART_STOPBITS_1;
|
|
USART_InitStruct.Parity = LL_USART_PARITY_NONE;
|
|
USART_InitStruct.TransferDirection = LL_USART_DIRECTION_TX_RX;
|
|
USART_InitStruct.HardwareFlowControl = LL_USART_HWCONTROL_NONE;
|
|
USART_InitStruct.OverSampling = LL_USART_OVERSAMPLING_16;
|
|
LL_USART_Init(USART1, &USART_InitStruct);
|
|
LL_USART_ConfigAsyncMode(USART1);
|
|
|
|
SET_BIT(USART1->CR1, USART_CR1_PEIE | USART_CR1_RXNEIE);
|
|
LL_USART_Enable(USART1);
|
|
}
|