From 2e5f703c28e99289024c9a3e54515ca2bac8a331 Mon Sep 17 00:00:00 2001 From: Fabrice DJIATSA Date: Mon, 9 Jun 2025 15:13:03 +0200 Subject: [PATCH] tests: drivers: adc: adc_api: enable nocache memory The nucleo_f746zg board doesn't handle RX/TX buffers in non-cacheable memory when required. This leads to an error in the test_adc_api with the log: Supplied buffer is not in a non-cacheable region. Signed-off-by: Fabrice DJIATSA --- tests/drivers/adc/adc_api/boards/nucleo_f746zg.conf | 1 + 1 file changed, 1 insertion(+) create mode 100644 tests/drivers/adc/adc_api/boards/nucleo_f746zg.conf diff --git a/tests/drivers/adc/adc_api/boards/nucleo_f746zg.conf b/tests/drivers/adc/adc_api/boards/nucleo_f746zg.conf new file mode 100644 index 00000000000..c448e14811f --- /dev/null +++ b/tests/drivers/adc/adc_api/boards/nucleo_f746zg.conf @@ -0,0 +1 @@ +CONFIG_NOCACHE_MEMORY=y