Skip to content

Commit

Permalink
nrf/nrfx_config: Use UARTE for nrf52xxx devices.
Browse files Browse the repository at this point in the history
It was incomplete.
  • Loading branch information
robert-hh authored and dpgeorge committed Apr 5, 2023
1 parent 4085565 commit a529e0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 3 additions & 5 deletions ports/nrf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,6 @@ SRC_LIB_C += $(addprefix lib/,\
libm/roundf.c \
)

SRC_NRFX += $(addprefix lib/nrfx/drivers/src/,\
nrfx_uarte.c \
nrfx_twim.c \
)

include drivers/secureboot/secureboot.mk

endif
Expand All @@ -263,11 +258,13 @@ endif
SRC_NRFX += $(addprefix lib/nrfx/drivers/src/,\
prs/nrfx_prs.c \
nrfx_uart.c \
nrfx_uarte.c \
nrfx_adc.c \
nrfx_saadc.c \
nrfx_temp.c \
nrfx_rng.c \
nrfx_twi.c \
nrfx_twim.c \
nrfx_spi.c \
nrfx_spim.c \
nrfx_rtc.c \
Expand Down Expand Up @@ -319,6 +316,7 @@ SRC_C += $(addprefix lib/tinyusb/src/,\
tusb.c \
portable/nordic/nrf5x/dcd_nrf5x.c \
)

endif

DRIVERS_SRC_C += $(addprefix modules/,\
Expand Down
4 changes: 3 additions & 1 deletion ports/nrf/nrfx_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,16 @@
#endif
#endif

#if defined(NRF51) || defined(NRF52_SERIES)
#if defined(NRF51)
#define NRFX_UART_ENABLED 1
#define NRFX_UART0_ENABLED 1
#define NRFX_UART1_ENABLED 1
#elif defined(NRF52_SERIES)
#define NRFX_UARTE_ENABLED 1
#define NRFX_UARTE0_ENABLED 1
#if NRF52840 || NRF52840_XXAA
#define NRFX_UARTE1_ENABLED 1
#endif
#else
#define NRFX_UARTE_ENABLED 1
#define NRFX_UARTE0_ENABLED 1
Expand Down

0 comments on commit a529e0e

Please sign in to comment.