nRF Connect SDK API 0.1.0
Loading...
Searching...
No Matches
uart_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 _UART_DATA_EVENT_H_
8#define _UART_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 dev_idx;
31 uint8_t *buf;
32 size_t len;
33};
34
36
37#ifdef __cplusplus
38}
39#endif
40
45#endif /* _UART_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
uint8_t * buf
Definition: uart_data_event.h:31
size_t len
Definition: uart_data_event.h:32
uint8_t dev_idx
Definition: uart_data_event.h:30
struct app_event_header header
Definition: uart_data_event.h:28
Definition: uart_data_event.h:27