/******************************************************************************** * MAHE, 13.05.2002, 12H40 - now compiling as project of separated source files ********************************************************************************/ #ifndef _CRUISE3_H #define _CRUISE3_H /******************* * Includes *******************/ #include "hardware.h" #include "sensor.h" #include "ad.h" #include "pwm.h" #include "timer.h" #include "error.h" #include "buttons.h" #include "ports.h" #include "eeprom.h" #define MAXPOTIS 2 /******************* * Macros *******************/ #define bsf(file,index) ((file)|=1<<(index)) #define bcf(file,index) ((file)&=~(1<<(index))) #endif /* of _CRUISE3_H */