From 28fa1761c29822a96e083361675942290f7f1e3a Mon Sep 17 00:00:00 2001 From: Francois Ramu Date: Mon, 14 Mar 2022 15:07:12 +0100 Subject: [PATCH] tests: drivers: watchdog on stm32 nucleo board Configure nucleo_f429 boards with overlay to execute the tests/drivers/watchdog/wdt_basic_api Signed-off-by: Francois Ramu --- .../wdt_basic_api/boards/nucleo_f429zi.overlay | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/drivers/watchdog/wdt_basic_api/boards/nucleo_f429zi.overlay diff --git a/tests/drivers/watchdog/wdt_basic_api/boards/nucleo_f429zi.overlay b/tests/drivers/watchdog/wdt_basic_api/boards/nucleo_f429zi.overlay new file mode 100644 index 00000000000..6eca288b187 --- /dev/null +++ b/tests/drivers/watchdog/wdt_basic_api/boards/nucleo_f429zi.overlay @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2022 STMicroelectronics + * + * SPDX-License-Identifier: Apache-2.0 + */ + +&wwdg { + status = "okay"; +}; + +&iwdg { + status = "disabled"; +};