nRF Connect SDK API 2.7.99
Loading...
Searching...
No Matches
nrfe_common.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef NRFE_COMMON_H__
8#define NRFE_COMMON_H__
9
10#include <stdatomic.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16typedef struct __packed {
17 atomic_bool locked;
18 uint32_t data_size;
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif /* NRFE_COMMON_H__ */
atomic_bool locked
Definition: nrfe_common.h:17
uint32_t data_size
Definition: nrfe_common.h:18
Definition: nrfe_common.h:16