Fix maxref flag
This commit is contained in:
parent
5be2242b99
commit
a57bf413bc
2 changed files with 12 additions and 11 deletions
|
|
@ -55,10 +55,10 @@ extern "C"{
|
|||
*----------------------------------------------------------------------------*/
|
||||
|
||||
// Number of pins defined in PinDescription array
|
||||
#define PINS_COUNT (79U)
|
||||
#define NUM_DIGITAL_PINS (66U)
|
||||
#define NUM_ANALOG_INPUTS (12U)
|
||||
#define analogInputToDigitalPin(p) ((p < 12U) ? (p) + 54U : -1)
|
||||
#define PINS_COUNT 79
|
||||
#define NUM_DIGITAL_PINS 66
|
||||
#define NUM_ANALOG_INPUTS 12
|
||||
#define analogInputToDigitalPin(p) ((p < 12) ? (p) + 54 : -1)
|
||||
|
||||
#define digitalPinToPort(P) ( g_APinDescription[P].pPort )
|
||||
#define digitalPinToBitMask(P) ( g_APinDescription[P].ulPin )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue