From 30d07f2eec6f7f9c6bb3732a9d988cea8bb9561a Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Fri, 10 Jan 2025 18:13:40 +0000 Subject: [PATCH] boards: others: canbardo: disable watchdog at boot Disable the SAM E70 watchdog at boot in the CANbardo board default configuration. Signed-off-by: Henrik Brix Andersen --- boards/others/canbardo/canbardo.dts | 4 ++++ boards/others/canbardo/canbardo_defconfig | 2 ++ 2 files changed, 6 insertions(+) diff --git a/boards/others/canbardo/canbardo.dts b/boards/others/canbardo/canbardo.dts index 294365c7a95c..70da7b427bf1 100644 --- a/boards/others/canbardo/canbardo.dts +++ b/boards/others/canbardo/canbardo.dts @@ -126,6 +126,10 @@ zephyr_udc0: &usbhs { phys = <&transceiver1>; }; +&wdt { + status = "okay"; +}; + &flash0 { partitions { compatible = "fixed-partitions"; diff --git a/boards/others/canbardo/canbardo_defconfig b/boards/others/canbardo/canbardo_defconfig index 9f4016571d2d..72c0c1bffffa 100644 --- a/boards/others/canbardo/canbardo_defconfig +++ b/boards/others/canbardo/canbardo_defconfig @@ -8,3 +8,5 @@ CONFIG_HW_STACK_PROTECTION=y CONFIG_CONSOLE=y CONFIG_SERIAL=y CONFIG_UART_CONSOLE=y + +CONFIG_WDT_DISABLE_AT_BOOT=y