1 /* 2 * Licensed to the Apache Software Foundation (ASF) under one 3 * or more contributor license agreements. See the NOTICE file 4 * distributed with this work for additional information 5 * regarding copyright ownership. The ASF licenses this file 6 * to you under the Apache License, Version 2.0 (the 7 * "License"); you may not use this file except in compliance 8 * with the License. You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, 13 * software distributed under the License is distributed on an 14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 * KIND, either express or implied. See the License for the 16 * specific language governing permissions and limitations 17 * under the License. 18 */ 19 20 #ifndef H_BLE_SVC_LLS_ 21 #define H_BLE_SVC_LLS_ 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif 26 27 struct ble_hs_cfg; 28 29 #define BLE_SVC_LLS_UUID16 0x1803 30 #define BLE_SVC_LLS_CHR_UUID16_ALERT_LEVEL 0x2a06 31 32 /* Alert level definitions */ 33 #define BLE_SVC_LLS_ALERT_LEVEL_NO_ALERT 0 34 #define BLE_SVC_LLS_ALERT_LEVEL_MILD_ALERT 1 35 #define BLE_SVC_LLS_ALERT_LEVEL_HIGH_ALERT 2 36 37 typedef int ble_svc_lls_event_fn(uint8_t alert_level); 38 39 uint8_t ble_svc_lls_alert_level_get(void); 40 int ble_svc_lls_alert_level_set(uint8_t alert_level); 41 void ble_svc_lls_on_gap_disconnect(int reason); 42 43 void ble_svc_lls_set_cb(ble_svc_lls_event_fn *cb); 44 void ble_svc_lls_init(void); 45 46 #ifdef __cplusplus 47 } 48 #endif 49 50 #endif 51 52