diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2011-03-03 23:54:33 -0500 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-03-03 23:54:33 -0500 |
commit | 6cd58c57dbf8b52d94b4fda3cb565856530b377d (patch) | |
tree | 9b6542b5cdefc46fe71352a8ff5107e360dcca2b /cores/arduino/wiring_private.h | |
parent | b0ab2bc48bd3edd3b42d3a52f0995f220f77f814 (diff) |
Moving all pin definitions into pins_arduino.h.
This is a step towards providing portability across AVR's by simply including an appropriate header file.
Diffstat (limited to 'cores/arduino/wiring_private.h')
-rwxr-xr-x | cores/arduino/wiring_private.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/cores/arduino/wiring_private.h b/cores/arduino/wiring_private.h index b131ba0..74c0d06 100755 --- a/cores/arduino/wiring_private.h +++ b/cores/arduino/wiring_private.h @@ -44,28 +44,6 @@ extern "C"{ #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit)) #endif -#define NOT_A_PIN 0 -#define NOT_A_PORT 0 - -#define NOT_ON_TIMER 0 -#define TIMER0A 1 -#define TIMER0B 2 -#define TIMER1A 3 -#define TIMER1B 4 -#define TIMER2 5 -#define TIMER2A 6 -#define TIMER2B 7 - -#define TIMER3A 8 -#define TIMER3B 9 -#define TIMER3C 10 -#define TIMER4A 11 -#define TIMER4B 12 -#define TIMER4C 13 -#define TIMER5A 14 -#define TIMER5B 15 -#define TIMER5C 16 - #define EXTERNAL_INT_0 0 #define EXTERNAL_INT_1 1 #define EXTERNAL_INT_2 2 |