| 12345678910111213141516171819202122 |
- /** @file
- * @brief HTS Service sample
- */
- /*
- * Copyright (c) 2019 Aaron Tsui <aaron.tsui@outlook.com>
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifdef __cplusplus
- extern "C" {
- #endif
- void hts_init(void);
- void hts_indicate(void);
- extern struct bt_gatt_service_static hts_svc;
- #ifdef __cplusplus
- }
- #endif
|