nrfxlib API 3.3.99
Loading...
Searching...
No Matches
sdc_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 SDC_ASSERTS_H__
16#define SDC_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 { 135, 261, "CS results encoding failed" },
34};
35
36#ifdef __cplusplus
37}
38#endif
39
40#endif // SDC_ASSERTS_H__
41
static const sdc_assert_entry_t sdc_assert_messages[]
Array of documented SDC asserts.
Definition sdc_asserts.h:32
const char * assert_msg
Definition sdc_asserts.h:28
uint32_t line
Definition sdc_asserts.h:27
uint32_t file_id
Definition sdc_asserts.h:26
Struct to store SDC assert messages.
Definition sdc_asserts.h:25