Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Projects/STM32WB5MM-DK/Applications/BLE/BLE_Mesh_Model_Sensor/STM32_WPAN/app/appli_config.h')
-rw-r--r--Projects/STM32WB5MM-DK/Applications/BLE/BLE_Mesh_Model_Sensor/STM32_WPAN/app/appli_config.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/Projects/STM32WB5MM-DK/Applications/BLE/BLE_Mesh_Model_Sensor/STM32_WPAN/app/appli_config.h b/Projects/STM32WB5MM-DK/Applications/BLE/BLE_Mesh_Model_Sensor/STM32_WPAN/app/appli_config.h
new file mode 100644
index 000000000..ac0fb660c
--- /dev/null
+++ b/Projects/STM32WB5MM-DK/Applications/BLE/BLE_Mesh_Model_Sensor/STM32_WPAN/app/appli_config.h
@@ -0,0 +1,50 @@
+/**
+ ******************************************************************************
+* @file appli_config.h
+* @author BLE Mesh Team
+* @brief Header file for the application config file
+ ******************************************************************************
+ * @attention
+ *
+ * Copyright (c) 2020-2021 STMicroelectronics.
+ * All rights reserved.
+ *
+ * This software is licensed under terms that can be found in the LICENSE file
+ * in the root directory of this software component.
+ * If no LICENSE file comes with this software, it is provided AS-IS.
+ *
+ ******************************************************************************
+ */
+
+/* Define to prevent recursive inclusion -------------------------------------*/
+#ifndef __APPLI_CONFIG_H
+#define __APPLI_CONFIG_H
+
+/* Includes ------------------------------------------------------------------*/
+#include "types.h"
+#include "mesh_cfg.h"
+#include "mesh_cfg_usr.h"
+#include "sensors.h"
+#include "common.h"
+/* Exported macro ------------------------------------------------------------*/
+/* Exported variables ------------------------------------------------------- */
+
+/* Exported Functions Prototypes ---------------------------------------------*/
+void Appli_GetAppKeyAddParamsCb(model_securityKeyParams_t*);
+void Appli_GetAppKeyDeleteParamsCb(model_securityKeyParams_t*);
+void Appli_GetAppKeyListParamsCb(model_appKeyListParams_t*);
+void Appli_GetAppKeyUpdateParamsCb(model_securityKeyParams_t*);
+void Appli_GetNetKeyAddParamsCb(model_securityKeyParams_t*);
+void Appli_GetNetKeyDeleteParamsCb(model_securityKeyParams_t*);
+void Appli_GetNetKeyListParamsCb(model_netKeyListParams_t*);
+void Appli_GetNetKeyUpdateParamsCb(model_securityKeyParams_t*);
+void Appli_GetAppKeyBindingParamsCb(model_appKeyBindingParams_t*);
+void Appli_GetAppKeyUnBindingParamsCb(model_appKeyBindingParams_t*);
+void Appli_GetSubAddParamsCb(model_subParams_t*);
+void Appli_GetSubDeleteParamsCb(model_subParams_t*);
+void Appli_GetSubOverwriteParamsCb(model_subParams_t*);
+void Appli_GetPublicationSetParamsCb(model_publicationparams_t*);
+void Appli_GetPublicationGetParamsCb(model_publicationparams_t*);
+
+#endif /* __APPLI_CONFIG_H */
+