23 lines
346 B
Plaintext
23 lines
346 B
Plaintext
#message "link TPP2"
|
|
|
|
#ifndef global
|
|
#message "link global not defined"
|
|
#endif
|
|
|
|
#ifndef PLATFORM
|
|
|
|
#message "Platform TPP2"
|
|
|
|
#define PLATFORM "TPP2"
|
|
#define SENSORS 8
|
|
#define RELAYS 6
|
|
|
|
static unsigned char INPIN[SENSORS] = {
|
|
9, 8, 0, 16, 11, 10, 1, 17
|
|
};
|
|
|
|
static unsigned char OUTPIN[RELAYS] = {
|
|
13, 12, 15, 14, 32, 33
|
|
};
|
|
|
|
#endif |