1/*
2 * Copyright (c) 2021 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&timer0 {
8	status = "okay";
9	interrupts = <8 0>;
10	zli;
11};
12
13&wdt0 {
14	status = "disabled";
15};
16
17/ {
18	wdt_counter: wdt-counter {
19		compatible = "zephyr,counter-watchdog";
20		status = "okay";
21		counter = <&timer0>;
22	};
23};
24