diff options
author | Cristian Maglie <c.maglie@bug.st> | 2014-02-12 17:17:33 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2014-02-12 17:17:33 +0100 |
commit | 9684557a0b8366511e110f1d234567f97d8e603e (patch) | |
tree | 0b6f602a240344a80b00877c55fe61d36885be32 /variants/standard/pins_arduino.h | |
parent | dfde3ec99f41c6333a8c475810f285ce2b1ab265 (diff) | |
parent | 23b682417ed04f4067f3c7625a2d5518bf7a1f46 (diff) |
Merge branch 'master' into ide-1.5.x
Diffstat (limited to 'variants/standard/pins_arduino.h')
-rw-r--r-- | variants/standard/pins_arduino.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/variants/standard/pins_arduino.h b/variants/standard/pins_arduino.h index d0eb464..3d4a9f6 100644 --- a/variants/standard/pins_arduino.h +++ b/variants/standard/pins_arduino.h @@ -37,23 +37,23 @@ #define digitalPinHasPWM(p) ((p) == 3 || (p) == 5 || (p) == 6 || (p) == 9 || (p) == 10 || (p) == 11) #endif -#define SS 10 -#define MOSI 11 -#define MISO 12 -#define SCK 13 +static const uint8_t SS = 10; +static const uint8_t MOSI = 11; +static const uint8_t MISO = 12; +static const uint8_t SCK = 13; -#define SDA 18 -#define SCL 19 +static const uint8_t SDA = 18; +static const uint8_t SCL = 19; #define LED_BUILTIN 13 -#define A0 14 -#define A1 15 -#define A2 16 -#define A3 17 -#define A4 18 -#define A5 19 -#define A6 20 -#define A7 21 +static const uint8_t A0 = 14; +static const uint8_t A1 = 15; +static const uint8_t A2 = 16; +static const uint8_t A3 = 17; +static const uint8_t A4 = 18; +static const uint8_t A5 = 19; +static const uint8_t A6 = 20; +static const uint8_t A7 = 21; #define digitalPinToPCICR(p) (((p) >= 0 && (p) <= 21) ? (&PCICR) : ((uint8_t *)0)) #define digitalPinToPCICRbit(p) (((p) <= 7) ? 2 : (((p) <= 13) ? 0 : 1)) |