Contiki-NG
Loading...
Searching...
No Matches
watchdog-arch-stub.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026, RISE Research Institutes of Sweden AB
3 * All rights reserved.
4 *
5 * Author: Joakim Eriksson <joakim.eriksson@ri.se>
6 *
7 * SPDX-License-Identifier: BSD-3-Clause
8 */
9/**
10 * \file
11 * Watchdog stub for nRF54L15 (no-op until the real driver lands).
12 * \author
13 * Joakim Eriksson <joakim.eriksson@ri.se>
14 */
15/*---------------------------------------------------------------------------*/
16#include "dev/watchdog.h"
17/*---------------------------------------------------------------------------*/
18void
20{
21}
22/*---------------------------------------------------------------------------*/
23void
25{
26}
27/*---------------------------------------------------------------------------*/
28void
30{
31}
32/*---------------------------------------------------------------------------*/
33void
35{
36}
37/*---------------------------------------------------------------------------*/
38void
40{
41 while(1) {
42 }
43}
44/*---------------------------------------------------------------------------*/
void watchdog_reboot(void)
Keeps control until the WDT throws a reset signal.
void watchdog_start(void)
Starts the WDT in watchdog mode if enabled by user configuration, maximum interval.
void watchdog_periodic(void)
Writes the WDT clear sequence.
void watchdog_init(void)
Initialisation function for the WDT.
void watchdog_stop(void)
Stops the WDT such that it won't timeout and cause MCU reset.