00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __BASIC_H__
00009 #define __BASIC_H__
00010
00011
00012
00013
00014 #define STATION
00015 #define _NOP asm volatile ("nop\n\t"::)
00016 enum modtype {connected, away, empty, ir_s, ir_r, irstring_s};
00017 enum modtype modus, oldmodus;
00018 enum modtype oldmodus2;
00019
00020 enum admodtype {none, vcc, vout};
00021 enum admodtype admodus;
00022
00023 typedef unsigned char u08;
00024 typedef unsigned int u16;
00025 typedef signed char s08;
00026 typedef signed int s16;
00027
00028 #endif