1/*
2 * Copyright 2024 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/*
8 * stm32F0 has a WWDG clock by APB1 where the APB1 prescaler is 1..16
9 * Adjust the APB1 clock to match the WDG timeout.
10 */
11
12&rcc {
13	/delete-property/ apb1-prescaler;
14	apb1-prescaler = <16>;
15};
16
17&iwdg {
18	status = "disabled";
19};
20
21&wwdg {
22	status = "okay";
23};
24