nRF Connect SDK API 0.1.0
Loading...
Searching...
No Matches
ble_data_event.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef _BLE_DATA_EVENT_H_
8#define _BLE_DATA_EVENT_H_
9
16#include <string.h>
17#include <zephyr/toolchain.h>
18
19#include <app_event_manager.h>
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
28 struct app_event_header header;
29
30 uint8_t *buf;
31 size_t len;
32};
33
35
36#ifdef __cplusplus
37}
38#endif
39
44#endif /* _BLE_DATA_EVENT_H_ */
Application Event Manager header.
Application Event Manager profiler tracer header.
#define APP_EVENT_TYPE_DECLARE(ename)
Declare an event type.
Definition: app_event_manager.h:143
size_t len
Definition: ble_data_event.h:31
struct app_event_header header
Definition: ble_data_event.h:28
uint8_t * buf
Definition: ble_data_event.h:30
Definition: ble_data_event.h:27