You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
5.2KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2013 PJRC.COM, LLC.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * 1. The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * 2. If the Software is incorporated into a build system that allows
  17. * selection among a list of target devices, then similar target
  18. * devices manufactured by PJRC.COM must be included in the list of
  19. * target devices and selectable in the same manner.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  25. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  26. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  28. * SOFTWARE.
  29. */
  30. #ifndef pins_macros_for_arduino_compatibility_h
  31. #define pins_macros_for_arduino_compatibility_h
  32. #include <stdint.h>
  33. const static uint8_t A0 = 14;
  34. const static uint8_t A1 = 15;
  35. const static uint8_t A2 = 16;
  36. const static uint8_t A3 = 17;
  37. const static uint8_t A4 = 18;
  38. const static uint8_t A5 = 19;
  39. const static uint8_t A6 = 20;
  40. const static uint8_t A7 = 21;
  41. const static uint8_t A8 = 22;
  42. const static uint8_t A9 = 23;
  43. const static uint8_t A10 = 34;
  44. const static uint8_t A11 = 35;
  45. const static uint8_t A12 = 36;
  46. const static uint8_t A13 = 37;
  47. const static uint8_t A14 = 40;
  48. const static uint8_t A15 = 26;
  49. const static uint8_t A16 = 27;
  50. const static uint8_t A17 = 28;
  51. const static uint8_t A18 = 29;
  52. const static uint8_t A19 = 30;
  53. const static uint8_t A20 = 31;
  54. const static uint8_t SS = 10;
  55. const static uint8_t MOSI = 11;
  56. const static uint8_t MISO = 12;
  57. const static uint8_t SCK = 13;
  58. const static uint8_t LED_BUILTIN = 13;
  59. const static uint8_t SDA = 18;
  60. const static uint8_t SCL = 19;
  61. #define NUM_DIGITAL_PINS 34
  62. #define NUM_ANALOG_INPUTS 14
  63. #define analogInputToDigitalPin(p) (((p) < 10) ? (p) + 14 : -1)
  64. #define digitalPinHasPWM(p) (((p) >= 3 && (p) <= 6) || (p) == 9 || (p) == 10 || ((p) >= 20 && (p) <= 23))
  65. #define NOT_AN_INTERRUPT -1
  66. #define digitalPinToInterrupt(p) ((p) < NUM_DIGITAL_PINS ? (p) : -1)
  67. struct digital_pin_bitband_and_config_table_struct {
  68. volatile uint32_t *reg;
  69. volatile uint32_t *config;
  70. };
  71. extern const struct digital_pin_bitband_and_config_table_struct digital_pin_to_info_PGM[];
  72. // compatibility macros
  73. #define digitalPinToPort(pin) (pin)
  74. #define digitalPinToBitMask(pin) (1)
  75. #define portOutputRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 0))
  76. #define portSetRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 32))
  77. #define portClearRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 64))
  78. #define portToggleRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 96))
  79. #define portInputRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 128))
  80. #define portModeRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 160))
  81. #define portConfigRegister(pin) ((volatile uint32_t *)(digital_pin_to_info_PGM[(pin)].config))
  82. #define digitalPinToPortReg(pin) (portOutputRegister(pin))
  83. #define digitalPinToBit(pin) (1)
  84. #define NOT_ON_TIMER 0
  85. static inline uint8_t digitalPinToTimer(uint8_t) __attribute__((always_inline, unused));
  86. static inline uint8_t digitalPinToTimer(uint8_t pin)
  87. {
  88. if (pin >= 3 && pin <= 6) return pin - 2;
  89. if (pin >= 9 && pin <= 10) return pin - 4;
  90. if (pin >= 20 && pin <= 23) return pin - 13;
  91. return NOT_ON_TIMER;
  92. }
  93. // These serial port names are intended to allow libraries and architecture-neutral
  94. // sketches to automatically default to the correct port name for a particular type
  95. // of use. For example, a GPS module would normally connect to SERIAL_PORT_HARDWARE_OPEN,
  96. // the first hardware serial port whose RX/TX pins are not dedicated to another use.
  97. //
  98. // SERIAL_PORT_MONITOR Port which normally prints to the Arduino Serial Monitor
  99. //
  100. // SERIAL_PORT_USBVIRTUAL Port which is USB virtual serial
  101. //
  102. // SERIAL_PORT_LINUXBRIDGE Port which connects to a Linux system via Bridge library
  103. //
  104. // SERIAL_PORT_HARDWARE Hardware serial port, physical RX & TX pins.
  105. //
  106. // SERIAL_PORT_HARDWARE_OPEN Hardware serial ports which are open for use. Their RX & TX
  107. // pins are NOT connected to anything by default.
  108. //
  109. #define SERIAL_PORT_MONITOR Serial
  110. #define SERIAL_PORT_USBVIRTUAL Serial
  111. #define SERIAL_PORT_HARDWARE Serial1
  112. #define SERIAL_PORT_HARDWARE1 Serial2
  113. #define SERIAL_PORT_HARDWARE2 Serial3
  114. #define SERIAL_PORT_HARDWARE_OPEN Serial1
  115. #define SERIAL_PORT_HARDWARE_OPEN1 Serial2
  116. #define SERIAL_PORT_HARDWARE_OPEN2 Serial3
  117. #endif