nrfxlib API 3.4.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 { 0, 0x4b7a, "Clock ctrl release" },
34 { 0, 0x54ad, "HFXO failure" },
35 { 0, 0x8ad8, "HFXO failure" },
36 { 0, 0xdc71, "HFXO failure" },
37 { 0, 0xde70, "Clock ctrl request" },
38 { 0, 0xe1d8, "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