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

appli_config.h « app « STM32_WPAN « BLE_MeshLightingLPN « BLE « Applications « NUCLEO-WB15CC « Projects - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b33d059fcd87a9f17718e0383c71e4aa811fae14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file    appli_config.h
  * @author  MCD Application Team
  * @brief   Header file for the application config file 
  ******************************************************************************
  * @attention
  *
  * Copyright (c) 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.
  *
  ******************************************************************************
  */
/* USER CODE END Header */

/* 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 */