Convert digitalPinToPort() result to int. Most platforms return integers; SAM3X8E returns Pio* which needs mapping to sequential port IDs.
| 115 | // Convert digitalPinToPort() result to int. Most platforms return integers; |
| 116 | // SAM3X8E returns Pio* which needs mapping to sequential port IDs. |
| 117 | inline int portValueToId(unsigned char v) { return v; } |
| 118 | inline int portValueToId(unsigned short v) { return static_cast<int>(v); } |
| 119 | inline int portValueToId(int v) { return v; } |
| 120 | inline int portValueToId(long v) { return static_cast<int>(v); } |