2021-07-26 17:17:04 +08:00
|
|
|
#ifndef USER_MAIN
|
|
|
|
#define USER_MAIN
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include "tim.h"
|
2021-07-27 09:58:57 +08:00
|
|
|
#include "gpio.h"
|
|
|
|
#include "adc.h"
|
2021-08-31 17:38:28 +08:00
|
|
|
#include "spi.h"
|
|
|
|
#include "usart.h"
|
2021-07-27 09:58:57 +08:00
|
|
|
#include "ethernet.h"
|
2021-08-31 17:38:28 +08:00
|
|
|
#include "power.h"
|
|
|
|
#include "fpga.h"
|
2022-01-09 20:30:28 +08:00
|
|
|
// #include "fsmc.h"
|
2021-08-31 17:38:28 +08:00
|
|
|
#include "test_logic.h"
|
2021-07-26 17:17:04 +08:00
|
|
|
|
|
|
|
void user_setup();
|
|
|
|
void user_loop();
|
|
|
|
|
|
|
|
#endif
|