fix redundant-decls warnings with USART_Printf_Init()

This commit is contained in:
hathach 2023-01-12 12:30:18 +07:00
parent e61d4aefe6
commit 658897cf4e
5 changed files with 5 additions and 9 deletions

View File

@ -75,7 +75,7 @@ void uart_sync(void)
}
void USART_Printf_Init(uint32_t baudrate)
void usart_printf_init(uint32_t baudrate)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;

View File

@ -28,4 +28,4 @@
void uart_write(char c);
void uart_sync(void);
void USART_Printf_Init(uint32_t baudrate);
void usart_printf_init(uint32_t baudrate);

View File

@ -10,7 +10,7 @@
#ifndef __CH32V30x_IT_H
#define __CH32V30x_IT_H
#include "debug.h"
// #include "debug.h"
#endif /* __CH32V30x_IT_H */

View File

@ -68,7 +68,7 @@ void board_init(void) {
SysTick_Config(SystemCoreClock / 1000);
#endif
USART_Printf_Init(115200);
usart_printf_init(115200);
RCC_USBCLK48MConfig(RCC_USBCLK48MCLKSource_USBPHY);
RCC_USBHSPLLCLKConfig(RCC_HSBHSPLLCLKSource_HSE);

View File

@ -30,9 +30,6 @@ CFLAGS += \
-Xlinker --gc-sections \
-DBOARD_TUD_MAX_SPEED=OPT_MODE_HIGH_SPEED
# caused by extra void USART_Printf_Init() in debug_uart.h and EVT/EXAME/SRC/DEBUG/debug.h
CFLAGS += -Wno-error=redundant-decls
LDFLAGS += \
-Xlinker --gc-sections --specs=nano.specs --specs=nosys.specs
@ -49,8 +46,7 @@ SRC_S += \
INC += \
$(TOP)/$(BOARD_PATH) \
$(TOP)/$(CH32V307_SDK_SRC)/Peripheral/inc \
$(TOP)/$(CH32V307_SDK_SRC)/Debug
$(TOP)/$(CH32V307_SDK_SRC)/Peripheral/inc
# For freeRTOS port source
FREERTOS_PORT = RISC-V