Browse Source

Workaround for uart makefile issues (#23192)

pull/23216/head 0.24.2
Joel Challis 2 months ago
committed by GitHub
parent
commit
092ef661af
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 12 deletions
  1. +5
    -0
      platforms/chibios/chibios_config.h
  2. +1
    -1
      platforms/chibios/drivers/uart_sio.c
  3. +0
    -11
      platforms/chibios/platform.mk

+ 5
- 0
platforms/chibios/chibios_config.h View File

@ -108,6 +108,11 @@
# if defined(STM32F1XX) || defined(STM32F2XX) || defined(STM32F4XX) || defined(STM32L1XX)
# define USE_I2CV1
# endif
# if defined(STM32G0XX) || defined(STM32G4XX) || defined(STM32L5XX) || defined(STM32H7XX)
# define USE_USARTV3
# endif
#endif
// GD32 compatibility


+ 1
- 1
platforms/chibios/drivers/uart_sio.c View File

@ -16,7 +16,7 @@ static SIOConfig sioConfig = {
#else
static SIOConfig sioConfig = {
.baud = SIO_DEFAULT_BITRATE,
# if defined(MCU_STM32) && defined(CHIBIOS_HAL_USARTv3)
# if defined(MCU_STM32) && defined(USE_USARTV3)
.presc = USART_PRESC1,
# endif
.cr1 = UART_CR1,


+ 0
- 11
platforms/chibios/platform.mk View File

@ -329,17 +329,6 @@ ifeq ($(strip $(USE_CHIBIOS_CONTRIB)),yes)
EXTRAINCDIRS += $(PLATFORMINC_CONTRIB) $(HALINC_CONTRIB) $(CHIBIOS_CONTRIB)/os/various
endif
#
# Extract supported HAL drivers
##############################################################################
define add_lld_driver_define
$(eval driver := $(word 2,$(subst /LLD/, ,$(1))))
$(eval OPT_DEFS += -DCHIBIOS_HAL_$(driver))
endef
$(foreach dir,$(EXTRAINCDIRS),$(if $(findstring /LLD/,$(dir)),$(call add_lld_driver_define,$(dir))))
#
# Project, sources and paths
##############################################################################


Loading…
Cancel
Save