Contiki-NG
Toggle main menu visibility
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
/*---------------------------------------------------------------------------*/
18
void
19
watchdog_init
(
void
)
20
{
21
}
22
/*---------------------------------------------------------------------------*/
23
void
24
watchdog_start
(
void
)
25
{
26
}
27
/*---------------------------------------------------------------------------*/
28
void
29
watchdog_periodic
(
void
)
30
{
31
}
32
/*---------------------------------------------------------------------------*/
33
void
34
watchdog_stop
(
void
)
35
{
36
}
37
/*---------------------------------------------------------------------------*/
38
void
39
watchdog_reboot
(
void
)
40
{
41
while
(1) {
42
}
43
}
44
/*---------------------------------------------------------------------------*/
watchdog_reboot
void watchdog_reboot(void)
Keeps control until the WDT throws a reset signal.
Definition
watchdog-arch-stub.c:39
watchdog_start
void watchdog_start(void)
Starts the WDT in watchdog mode if enabled by user configuration, maximum interval.
Definition
watchdog-arch-stub.c:24
watchdog_periodic
void watchdog_periodic(void)
Writes the WDT clear sequence.
Definition
watchdog-arch-stub.c:29
watchdog_init
void watchdog_init(void)
Initialisation function for the WDT.
Definition
watchdog-arch-stub.c:19
watchdog_stop
void watchdog_stop(void)
Stops the WDT such that it won't timeout and cause MCU reset.
Definition
watchdog-arch-stub.c:34
arch
cpu
nrf
nrf54l15
watchdog-arch-stub.c
Generated on
for Contiki-NG by
1.17.0