Syrostan-MCU-C/Core/Inc/User/user_main.h

19 lines
289 B
C
Raw Normal View History

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"
#include "spi.h"
#include "usart.h"
2021-07-27 09:58:57 +08:00
#include "ethernet.h"
#include "power.h"
#include "fpga.h"
#include "fsmc.h"
#include "test_logic.h"
2021-07-26 17:17:04 +08:00
void user_setup();
void user_loop();
#endif