1 /**
2 ******************************************************************************
3 * @file : main.c
4 * @brief : Main program body
5 ******************************************************************************
6 * @attention
7 *
8 * Copyright (c) 2021 Nuclei Limited. All rights reserved.
9 * All rights reserved.
10 *
11 * This software component is licensed by ST under BSD 3-Clause license,
12 * the "License"; You may not use this file except in compliance with the
13 * License. You may obtain a copy of the License at:
14 * opensource.org/licenses/BSD-3-Clause
15 *
16 ******************************************************************************
17 */
18 /* Includes ------------------------------------------------------------------*/
19 #include <stdio.h>
20 #include "nuclei_sdk_hal.h"
21 #include "task_sample.h"
22 #include "target_config.h"
23 /**
24 * @brief The application entry point.
25 * @retval int
26 */
main(void)27 int main(void)
28 {
29 /* USER CODE BEGIN Init */
30 RunTaskSample();
31 while (1) {
32 }
33 }
34 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
35