mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-05 00:42:28 +00:00
Convert code to use u{8,16,32,64}_t and s{8,16,32,64}_t instead of C99 integer types. Jira: ZEP-2051 Change-Id: I08c682bfc0b80dfa88de859e90a011bcd2db2762 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
21 lines
253 B
C
21 lines
253 B
C
/** @file
|
|
* @brief HRS Service sample
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void hrs_init(u8_t blsc);
|
|
void hrs_notify(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|