nrfxlib API 3.3.99
Loading...
Searching...
No Matches
mpsl_asserts.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
15#ifndef MPSL_ASSERTS_H__
16#define MPSL_ASSERTS_H__
17
18#include <stdint.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
25typedef struct {
26 uint32_t file_id;
27 uint32_t line;
28 const char *assert_msg;
30
33 { 5, 1013, "HFXO failure" },
34 { 67, 108, "HFXO failure" },
35 { 109, 585, "Clock ctrl request" },
36 { 109, 598, "Clock ctrl release" },
37 { 183, 85, "HFXO failure" },
38 { 188, 214, "HFXO failure" },
39};
40
41#ifdef __cplusplus
42}
43#endif
44
45#endif // MPSL_ASSERTS_H__
46
static const mpsl_assert_entry_t mpsl_assert_messages[]
Array of documented MPSL asserts.
Definition mpsl_asserts.h:32
uint32_t file_id
Definition mpsl_asserts.h:26
uint32_t line
Definition mpsl_asserts.h:27
const char * assert_msg
Definition mpsl_asserts.h:28
Struct to store MPSL assert messages.
Definition mpsl_asserts.h:25