1 /* USER CODE BEGIN Header */ 2 /** 3 ****************************************************************************** 4 * @file ble_conf.h 5 * @author MCD Application Team 6 * @brief Configuration file for BLE Middleware. 7 ****************************************************************************** 8 * @attention 9 * 10 * Copyright (c) 2024 STMicroelectronics. 11 * All rights reserved. 12 * 13 * This software is licensed under terms that can be found in the LICENSE file 14 * in the root directory of this software component. 15 * If no LICENSE file comes with this software, it is provided AS-IS. 16 * 17 ****************************************************************************** 18 */ 19 /* USER CODE END Header */ 20 21 /* Define to prevent recursive inclusion -------------------------------------*/ 22 #ifndef BLE_CONF_H 23 #define BLE_CONF_H 24 25 #include "app_conf.h" 26 27 /****************************************************************************** 28 * 29 * BLE Event Handler configuration 30 * 31 ******************************************************************************/ 32 33 /** 34 * There is one handler per BLE service 35 */ 36 #define BLE_CFG_MAX_NBR_GATT_EVT_HANDLERS (10) 37 38 /* USER CODE BEGIN ble_conf_1 */ 39 40 /* USER CODE END ble_conf_1 */ 41 42 #endif /*BLE_CONF_H */ 43