From bc8065cc7e5ac4ac9b4edd3bf511a1fc7ea66b2b Mon Sep 17 00:00:00 2001 From: Emilio Benavente Date: Wed, 26 Feb 2025 13:19:15 -0600 Subject: [PATCH] boards: nxp: frdm_mcxc242: Free Ram Region for USB Testing Frees ram region on the frdm_mcxc242 to allow usb samples to run on this platform due to the constraint of 16KB ram space for this platform. Signed-off-by: Emilio Benavente --- boards/nxp/frdm_mcxc242/Kconfig.defconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 boards/nxp/frdm_mcxc242/Kconfig.defconfig diff --git a/boards/nxp/frdm_mcxc242/Kconfig.defconfig b/boards/nxp/frdm_mcxc242/Kconfig.defconfig new file mode 100644 index 00000000000..6028882b542 --- /dev/null +++ b/boards/nxp/frdm_mcxc242/Kconfig.defconfig @@ -0,0 +1,16 @@ +# +# Copyright 2025 NXP +# +# SPDX-License-Identifier: Apache-2.0 +# + +if BOARD_FRDM_MCXC242 + +if USB_CDC_ACM + +config USB_CDC_ACM_RINGBUF_SIZE + default 256 + +endif #USB_CDC_ACM + +endif #BOARD_FRDM_MCXC242