21 lines
481 B
C
21 lines
481 B
C
#ifndef _TEST_H_
|
||
#define _TEST_H_
|
||
|
||
#include "SC_Init.h" //MCU Init header,Include all IC resource headers
|
||
#include "SC_it.h"
|
||
#include "..\Drivers\SCDriver_list.h"
|
||
#include "HeadFiles\SysFunVarDefine.h"
|
||
#include "sc92f_ssi.h"
|
||
#include "Uart1.h"
|
||
#include "motor.h"
|
||
|
||
extern bit it_1s_flag; //1s定时标志
|
||
extern bit it_100ms_flag; //100ms定时标志
|
||
extern bit it_5ms_flag; //5ms定时标志
|
||
|
||
extern bit led_flag; //led灯开关标志
|
||
|
||
void led_test();
|
||
void motor_test();
|
||
|
||
#endif |