1 /** @file 2 * @brief HoG Service sample 3 */ 4 5 /* 6 * Copyright (c) 2016 Intel Corporation 7 * 8 * SPDX-License-Identifier: Apache-2.0 9 */ 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 void hog_init(void); 16 17 void hog_button_loop(void); 18 19 #ifdef __cplusplus 20 } 21 #endif 22