boards: arm: adafruit_itsybitsy_nrf52840: Standardise on USB CDC name

Uses the same name to enable USB CDC for boards that do not have a
direct UART connection to a host PC and use USB CDC instead.

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
This commit is contained in:
Jamie McCrae 2022-12-20 11:56:32 +00:00 committed by Fabio Baltieri
commit 5993c94384
2 changed files with 3 additions and 3 deletions

View file

@ -9,6 +9,6 @@ config BOARD_ENABLE_DCDC
default y
depends on BOARD_ADAFRUIT_ITSYBITSY_NRF52840
config BOARD_ENABLE_USB_CDC
config BOARD_SERIAL_BACKEND_CDC_ACM
bool "USB CDC"
default y

View file

@ -11,7 +11,7 @@ config BOARD
config BT_CTLR
default BT
if BOARD_ENABLE_USB_CDC
if BOARD_SERIAL_BACKEND_CDC_ACM
config USB_DEVICE_STACK
default y
@ -47,6 +47,6 @@ config LOG_PROCESS_THREAD_STARTUP_DELAY_MS
endif # LOG
endif # BOARD_ENABLE_USB_CDC
endif # BOARD_SERIAL_BACKEND_CDC_ACM
endif # BOARD_ADAFRUIT_ITSYBITSY_NRF52840