diff options
author | Cristian Maglie <c.maglie@bug.st> | 2013-12-13 14:37:26 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2013-12-13 14:37:26 +0100 |
commit | a2cc9674baccb1111645f3b094f7de9a50c01b5b (patch) | |
tree | db1733d6b881e163b8d824b3c02038507b6365e1 /variants/mega | |
parent | 6cdf45953fffecad088acc9b33f7a92bca2687ba (diff) |
Changed pins definition in variants from constants to #defines.
Diffstat (limited to 'variants/mega')
-rw-r--r-- | variants/mega/pins_arduino.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/variants/mega/pins_arduino.h b/variants/mega/pins_arduino.h index 9991a21..124444f 100644 --- a/variants/mega/pins_arduino.h +++ b/variants/mega/pins_arduino.h @@ -32,31 +32,31 @@ #define analogInputToDigitalPin(p) ((p < 16) ? (p) + 54 : -1) #define digitalPinHasPWM(p) (((p) >= 2 && (p) <= 13) || ((p) >= 44 && (p)<= 46)) -static const uint8_t SS = 53; -static const uint8_t MOSI = 51; -static const uint8_t MISO = 50; -static const uint8_t SCK = 52; +#define SS 53 +#define MOSI 51 +#define MISO 50 +#define SCK 52 -static const uint8_t SDA = 20; -static const uint8_t SCL = 21; +#define SDA 20 +#define SCL 21 #define LED_BUILTIN 13 -static const uint8_t A0 = 54; -static const uint8_t A1 = 55; -static const uint8_t A2 = 56; -static const uint8_t A3 = 57; -static const uint8_t A4 = 58; -static const uint8_t A5 = 59; -static const uint8_t A6 = 60; -static const uint8_t A7 = 61; -static const uint8_t A8 = 62; -static const uint8_t A9 = 63; -static const uint8_t A10 = 64; -static const uint8_t A11 = 65; -static const uint8_t A12 = 66; -static const uint8_t A13 = 67; -static const uint8_t A14 = 68; -static const uint8_t A15 = 69; +#define A0 54 +#define A1 55 +#define A2 56 +#define A3 57 +#define A4 58 +#define A5 59 +#define A6 60 +#define A7 61 +#define A8 62 +#define A9 63 +#define A10 64 +#define A11 65 +#define A12 66 +#define A13 67 +#define A14 68 +#define A15 69 // A majority of the pins are NOT PCINTs, SO BE WARNED (i.e. you cannot use them as receive pins) // Only pins available for RECEIVE (TRANSMIT can be on any pin): |