nRF Connect SDK API 3.3.99
Loading...
Searching...
No Matches
crash_gen.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2025 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef NRF_RPC_CRASH_GEN_H_
8#define NRF_RPC_CRASH_GEN_H_
9
10#include <stdint.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
29void nrf_rpc_crash_gen_assert(uint32_t delay_ms);
30
31
36void nrf_rpc_crash_gen_hard_fault(uint32_t delay_ms);
37
38
43void nrf_rpc_crash_gen_stack_overflow(uint32_t delay_ms);
44
50#ifdef __cplusplus
51}
52#endif
53
54#endif /* NRF_RPC_CRASH_GEN_H_ */
void nrf_rpc_crash_gen_stack_overflow(uint32_t delay_ms)
Generate stack overflow on RPC server.
void nrf_rpc_crash_gen_assert(uint32_t delay_ms)
Generate assertion failure on RPC server.
void nrf_rpc_crash_gen_hard_fault(uint32_t delay_ms)
Generate hard fault on RPC server.