L14-Click 1.0
STM32WLE5CC LoRaWAN Sensor Platform
Loading...
Searching...
No Matches
app_lorawan.h
Go to the documentation of this file.
1/* USER CODE BEGIN Header */
2/**
3 ******************************************************************************
4 * @file app_lorawan.h
5 * @author MCD Application Team
6 * @brief Header of application of the LRWAN Middleware
7 ******************************************************************************
8 * @attention
9 *
10 * Copyright (c) 2026 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 __APP_LORAWAN_H__
23#define __APP_LORAWAN_H__
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29/* Includes ------------------------------------------------------------------*/
30/* USER CODE BEGIN Includes */
31
32/* USER CODE END Includes */
33
34/* Exported types ------------------------------------------------------------*/
35/* USER CODE BEGIN ET */
36
37/* USER CODE END ET */
38
39/* Exported constants --------------------------------------------------------*/
40/* USER CODE BEGIN EC */
41
42/* USER CODE END EC */
43
44/* External variables --------------------------------------------------------*/
45/* USER CODE BEGIN EV */
46
47/* USER CODE END EV */
48
49/* Exported macro ------------------------------------------------------------*/
50/* USER CODE BEGIN EM */
51
52/* USER CODE END EM */
53
54/* Exported Functions Prototypes ---------------------------------------------*/
55/**
56 * @brief Init Lora Application
57 */
58void MX_LoRaWAN_Init(void);
59
60/**
61 * @brief Entry Lora Process or scheduling
62 */
63void MX_LoRaWAN_Process(void);
64
65/* USER CODE BEGIN EFP */
66
67/* USER CODE END EFP */
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif /*__APP_LORAWAN_H__*/
void MX_LoRaWAN_Process(void)
Entry Lora Process or scheduling.
Definition app_lorawan.c:81
void MX_LoRaWAN_Init(void)
Init Lora Application.
Definition app_lorawan.c:65