1 /** @file 2 * @brief HTS Service sample 3 */ 4 5 /* 6 * Copyright (c) 2019 Aaron Tsui <aaron.tsui@outlook.com> 7 * 8 * SPDX-License-Identifier: Apache-2.0 9 */ 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 void hts_init(void); 16 void hts_indicate(void); 17 18 #ifdef __cplusplus 19 } 20 #endif 21