forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

wujiazhi
2024-06-07 d0cca79a4aa7efce979c6aed275fe1bb75af4cc4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "main.h"
#include "rcc_config.h"
#include "project_test.h"
 
int main(void)
{
  System_power_on_init();
  All_GPIO_Init_test();
  UART_Init_test();
  ALL_ADC_Init_Test();
  Iic_Init_Test();
  // ALL_GPIO_EXTI_test();
#if Debug_Model
  AppNvr_Print();
  project_test_9();
  project_test_7(); // Òº¾§ÏÔʾ
#endif
  while (1)
  {
    Project_Test();
  }
}