14 lines
223 B
C
14 lines
223 B
C
//
|
|
// Created by ricardo on 2022/5/6.
|
|
//
|
|
|
|
#ifndef AUTO_PILOT_BUS_DEFINE_H
|
|
#define AUTO_PILOT_BUS_DEFINE_H
|
|
|
|
#define CLOCK_WISE 0
|
|
#define COUNTER_CLOCK_WISE 1
|
|
#define TRUE 1
|
|
#define FAlSE 0
|
|
|
|
#endif //AUTO_PILOT_BUS_DEFINE_H
|