1 | /* USER CODE BEGIN Header */ |
---|
2 | /** |
---|
3 | ****************************************************************************** |
---|
4 | * @file app_azure_rtos.h |
---|
5 | * @author MCD Application Team |
---|
6 | * @brief app_azure_rtos application header file |
---|
7 | ****************************************************************************** |
---|
8 | * @attention |
---|
9 | * |
---|
10 | * Copyright (c) 2020-2021 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_AZURE_RTOS_H |
---|
23 | #define APP_AZURE_RTOS_H |
---|
24 | #ifdef __cplusplus |
---|
25 | extern "C" { |
---|
26 | #endif |
---|
27 | |
---|
28 | /* Includes ------------------------------------------------------------------*/ |
---|
29 | #include "app_azure_rtos_config.h" |
---|
30 | |
---|
31 | #include "app_threadx.h" |
---|
32 | |
---|
33 | #include "app_filex.h" |
---|
34 | /* Private includes ----------------------------------------------------------*/ |
---|
35 | /* USER CODE BEGIN Includes */ |
---|
36 | |
---|
37 | /* USER CODE END Includes */ |
---|
38 | |
---|
39 | /* Exported types ------------------------------------------------------------*/ |
---|
40 | /* USER CODE BEGIN ET */ |
---|
41 | |
---|
42 | /* USER CODE END ET */ |
---|
43 | |
---|
44 | /* Exported constants --------------------------------------------------------*/ |
---|
45 | /* USER CODE BEGIN EC */ |
---|
46 | |
---|
47 | /* USER CODE END EC */ |
---|
48 | |
---|
49 | /* Exported macro ------------------------------------------------------------*/ |
---|
50 | /* USER CODE BEGIN EM */ |
---|
51 | |
---|
52 | /* USER CODE END EM */ |
---|
53 | |
---|
54 | /* Exported functions prototypes ---------------------------------------------*/ |
---|
55 | /* USER CODE BEGIN EFP */ |
---|
56 | |
---|
57 | /* USER CODE END EFP */ |
---|
58 | |
---|
59 | /* Private defines -----------------------------------------------------------*/ |
---|
60 | /* USER CODE BEGIN PD */ |
---|
61 | |
---|
62 | /* USER CODE END PD */ |
---|
63 | |
---|
64 | #ifdef __cplusplus |
---|
65 | } |
---|
66 | #endif |
---|
67 | |
---|
68 | #endif /* APP_AZURE_RTOS_H */ |
---|