You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
352 B
19 lines
352 B
#ifndef _APP_H_
|
|
#define _APP_H_
|
|
|
|
|
|
#include <hic.h>
|
|
#include "basic_type.h"
|
|
#include "t21_t8.h"
|
|
#include "led.h"
|
|
#include "system_init.h"
|
|
#include "uart.h"
|
|
#include "motor.h"
|
|
#include "lcd.h"
|
|
#include "io_config.h"
|
|
extern volatile int motor_jerk_state;
|
|
void peripheral_config(void);//外设配置函数
|
|
void start_up(void);
|
|
#endif
|
|
|
|
|