nRF Connect SDK API 0.1.0
Loading...
Searching...
No Matches
cpu_load_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 _CPU_LOAD_EVENT_H_
8#define _CPU_LOAD_EVENT_H_
9
16#include <app_event_manager.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
25 struct app_event_header header;
27 uint32_t load;
28};
29
31
32#ifdef __cplusplus
33}
34#endif
35
38#endif /* _CPU_LOAD_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
uint32_t load
Definition: cpu_load_event.h:27
struct app_event_header header
Definition: cpu_load_event.h:25
CPU load event.
Definition: cpu_load_event.h:24