Remove include guards in internal files; it is an agreed convention to not have include guards in internal header files in Bluetooth subsystem. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
13 lines
284 B
C
13 lines
284 B
C
/*
|
|
* Copyright (c) 2016 Nordic Semiconductor ASA
|
|
* Copyright (c) 2016 Vinayak Kariappa Chettimada
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
void cntr_init(void);
|
|
u32_t cntr_start(void);
|
|
u32_t cntr_stop(void);
|
|
u32_t cntr_cnt_get(void);
|
|
void cntr_cmp_set(u8_t cmp, u32_t value);
|