72 lines
2.0 KiB
C
72 lines
2.0 KiB
C
/**
|
|
******************************************************************************
|
|
* File Name : app_touchgfx.c
|
|
******************************************************************************
|
|
* This file is generated by TouchGFX Generator 4.20.0.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2023 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "app_touchgfx.h"
|
|
|
|
/* Private includes ----------------------------------------------------------*/
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PD */
|
|
|
|
/* USER CODE END PD */
|
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
/* USER CODE BEGIN PM */
|
|
|
|
/* USER CODE END PM */
|
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
|
|
/* USER CODE BEGIN PV */
|
|
|
|
/* USER CODE END PV */
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
void touchgfx_init(void);
|
|
void touchgfx_components_init(void);
|
|
void touchgfx_taskEntry(void);
|
|
|
|
/* USER CODE BEGIN PFP */
|
|
|
|
/* USER CODE END PFP */
|
|
|
|
/**
|
|
* Initialize TouchGFX application
|
|
*/
|
|
void MX_TouchGFX_Init(void)
|
|
{
|
|
// Calling forward to touchgfx_init in C++ domain
|
|
touchgfx_init();
|
|
}
|
|
|
|
/**
|
|
* TouchGFX application entry function
|
|
*/
|
|
void MX_TouchGFX_Process(void)
|
|
{
|
|
// Calling forward to touchgfx_taskEntry in C++ domain
|
|
touchgfx_taskEntry();
|
|
}
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|