1 /**
2   ******************************************************************************
3   * @file               main.c
4   * @author             FMD AE
5   * @brief
6   * @version            V1.0.0
7   * @data                   2021-07-01
8     ******************************************************************************
9   */
10 
11 /* Includes ------------------------------------------------------------------*/
12 #include "main.h"
13 
14 /* Private functions ---------------------------------------------------------*/
15 
16 /**
17   * @brief  Main program.
18   * @param  None
19   * @retval None
20   */
main(void)21 int main(void)
22 {
23   /* Infinite loop */
24   while (1)
25   {
26   }
27 }
28 
29 
30 #ifdef  USE_FULL_ASSERT
31 
32 /**
33   * @brief  Reports the name of the source file and the source line number
34   *         where the assert_param error has occurred.
35   * @param  file: pointer to the source file name
36   * @param  line: assert_param error line source number
37   * @retval None
38   */
assert_failed(uint8_t * file,uint32_t line)39 void assert_failed(uint8_t* file, uint32_t line)
40 {
41   /* User can add his own implementation to report the file name and line number,
42      ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
43 
44   /* Infinite loop */
45   while (1)
46   {
47   }
48 }
49 #endif
50 
51 /**
52   * @}
53   */
54 
55 /**
56   * @}
57   */
58 
59 /************************ (C) COPYRIGHT FMD *****END OF FILE****/
60