Skip to content

Commit d552f71

Browse files
leewkb4567carlescufi
authored andcommitted
gazell: Add Gazell subsystem
Add Gazell Link Layer glue and Gazell Pairing library. Signed-off-by: Bernard Lee <bernard.lee@nordicsemi.no>
1 parent 881595d commit d552f71

13 files changed

+3991
-0
lines changed

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ Kconfig* @tejlmand
151151
/subsys/esb/ @Raane @lemrey
152152
/subsys/event_manager/ @pdunaj
153153
/subsys/fw_info/ @hakonfam
154+
/subsys/gazell/ @leewkb4567
154155
/subsys/mpsl/ @rugeGerritsen
155156
/subsys/net/ @rlubos
156157
/subsys/net/lib/azure_* @jtguggedal @simensrostad @coderbyheart

include/gzll_glue.h

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/*
2+
* Copyright (c) 2021 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
#ifndef __GZLL_GLUE_H
8+
#define __GZLL_GLUE_H
9+
10+
/**
11+
* @file
12+
* @brief Gazell Link Layer glue
13+
*
14+
* File defines a set of functions and variables called by Gazell Link Layer.
15+
*/
16+
17+
#include <stdbool.h>
18+
19+
#ifdef __cplusplus
20+
extern "C" {
21+
#endif
22+
23+
/**
24+
* @defgroup gzll_glue Gazell Link Layer glue
25+
*
26+
* File defines a set of functions and variables called by Gazell Link Layer.
27+
*
28+
* @{
29+
*/
30+
31+
/**
32+
* @brief Gazell Link Layer glue initialization.
33+
*
34+
* @retval true if initialization is successful.
35+
* @retval false if initialization is unsuccessful.
36+
*/
37+
bool gzll_glue_init(void);
38+
39+
/**
40+
* @}
41+
*/
42+
43+
#ifdef __cplusplus
44+
}
45+
#endif
46+
47+
#endif /* __GZLL_GLUE_H */

0 commit comments

Comments
 (0)