您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

211 行
8.6KB

  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. // A0-A9 are always digital 14-23, for Arduino compatibility
  34. const static uint8_t A0 = 14;
  35. const static uint8_t A1 = 15;
  36. const static uint8_t A2 = 16;
  37. const static uint8_t A3 = 17;
  38. const static uint8_t A4 = 18;
  39. const static uint8_t A5 = 19;
  40. const static uint8_t A6 = 20;
  41. const static uint8_t A7 = 21;
  42. const static uint8_t A8 = 22;
  43. const static uint8_t A9 = 23;
  44. #if defined(__MK20DX128__)
  45. const static uint8_t A10 = 34;
  46. const static uint8_t A11 = 35;
  47. const static uint8_t A12 = 36;
  48. const static uint8_t A13 = 37;
  49. #elif defined(__MK20DX256__)
  50. const static uint8_t A10 = 34;
  51. const static uint8_t A11 = 35;
  52. const static uint8_t A12 = 36;
  53. const static uint8_t A13 = 37;
  54. const static uint8_t A14 = 40;
  55. const static uint8_t A15 = 26;
  56. const static uint8_t A16 = 27;
  57. const static uint8_t A17 = 28;
  58. const static uint8_t A18 = 29;
  59. const static uint8_t A19 = 30;
  60. const static uint8_t A20 = 31;
  61. #elif defined(__MKL26Z64__)
  62. const static uint8_t A10 = 24;
  63. const static uint8_t A11 = 25;
  64. const static uint8_t A12 = 26;
  65. #elif defined(__MK64FX512__) || defined(__MK66FX1M0__)
  66. const static uint8_t A10 = 40;
  67. const static uint8_t A11 = 41;
  68. const static uint8_t A12 = 31;
  69. const static uint8_t A13 = 32;
  70. const static uint8_t A14 = 33;
  71. const static uint8_t A15 = 34;
  72. const static uint8_t A16 = 35;
  73. const static uint8_t A17 = 36;
  74. const static uint8_t A18 = 37;
  75. const static uint8_t A19 = 38;
  76. const static uint8_t A20 = 39;
  77. const static uint8_t A21 = 42;
  78. const static uint8_t A22 = 43;
  79. #endif
  80. const static uint8_t SS = 10;
  81. const static uint8_t MOSI = 11;
  82. const static uint8_t MISO = 12;
  83. const static uint8_t SCK = 13;
  84. const static uint8_t LED_BUILTIN = 13;
  85. const static uint8_t SDA = 18;
  86. const static uint8_t SCL = 19;
  87. #define NUM_DIGITAL_PINS CORE_NUM_DIGITAL
  88. #define NUM_ANALOG_INPUTS CORE_NUM_ANALOG
  89. #define NOT_AN_INTERRUPT -1
  90. #if defined(__MK20DX128__)
  91. #define analogInputToDigitalPin(p) (((p) <= 9) ? (p) + 14 : (((p) <= 13) ? (p) + 24 : -1))
  92. #define digitalPinHasPWM(p) (((p) >= 3 && (p) <= 6) || (p) == 9 || (p) == 10 || ((p) >= 20 && (p) <= 23))
  93. #define digitalPinToInterrupt(p) ((p) < NUM_DIGITAL_PINS ? (p) : -1)
  94. #elif defined(__MK20DX256__)
  95. #define analogInputToDigitalPin(p) (((p) <= 9) ? (p) + 14 : (((p) <= 13) ? (p) + 24 : (((p) == 14) ? 40 : (((p) <= 20) ? (p) + 11 : -1))))
  96. #define digitalPinHasPWM(p) (((p) >= 3 && (p) <= 6) || (p) == 9 || (p) == 10 || ((p) >= 20 && (p) <= 23) || (p) == 25 || (p) == 32)
  97. #define digitalPinToInterrupt(p) ((p) < NUM_DIGITAL_PINS ? (p) : -1)
  98. #elif defined(__MKL26Z64__)
  99. #define analogInputToDigitalPin(p) (((p) <= 9) ? (p) + 14 : (((p) <= 12) ? (p) + 14 : -1))
  100. #define digitalPinHasPWM(p) ((p) == 3 || (p) == 4 || (p) == 6 || (p) == 9 || (p) == 10 || (p) == 16 || (p) == 17 || (p) == 20 || (p) == 22 || (p) == 23)
  101. #define digitalPinToInterrupt(p) ((((p) >= 2 && (p) <= 15) || ((p) >= 20 && (p) <= 23)) ? (p) : -1)
  102. #elif defined(__MK64FX512__) || defined(__MK66FX1M0__)
  103. #define analogInputToDigitalPin(p) (((p) <= 9) ? (p) + 14 : (((p) >= 12 && (p) <= 20) ? (p) + 19 : -1))
  104. #define digitalPinHasPWM(p) (((p) >= 2 && (p) <= 10) || (p) == 14 || ((p) >= 20 && (p) <= 23) || (p) == 29 || (p) == 30 || ((p) >= 35 && (p) <= 38))
  105. #define digitalPinToInterrupt(p) ((p) < NUM_DIGITAL_PINS ? (p) : -1)
  106. #endif
  107. #define digitalPinToPCICR(p) ((volatile uint8_t *)0)
  108. #define digitalPinToPCICRbit(p) (0)
  109. #define digitalPinToPCIFR(p) ((volatile uint8_t *)0)
  110. #define digitalPinToPCIFRbit(p) (0)
  111. #define digitalPinToPCMSK(p) ((volatile uint8_t *)0)
  112. #define digitalPinToPCMSKbit(p) (0)
  113. #if defined(KINETISK)
  114. struct digital_pin_bitband_and_config_table_struct {
  115. volatile uint32_t *reg;
  116. volatile uint32_t *config;
  117. };
  118. extern const struct digital_pin_bitband_and_config_table_struct digital_pin_to_info_PGM[];
  119. // compatibility macros
  120. #define digitalPinToPort(pin) (pin)
  121. #define digitalPinToBitMask(pin) (1)
  122. #define portOutputRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 0))
  123. #define portSetRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 32))
  124. #define portClearRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 64))
  125. #define portToggleRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 96))
  126. #define portInputRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 128))
  127. #define portModeRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 160))
  128. #define portConfigRegister(pin) ((volatile uint32_t *)(digital_pin_to_info_PGM[(pin)].config))
  129. #define digitalPinToPortReg(pin) (portOutputRegister(pin))
  130. #define digitalPinToBit(pin) (1)
  131. #elif defined(KINETISL)
  132. struct digital_pin_bitband_and_config_table_struct {
  133. volatile uint8_t *reg;
  134. volatile uint32_t *config;
  135. uint8_t mask;
  136. };
  137. extern const struct digital_pin_bitband_and_config_table_struct digital_pin_to_info_PGM[];
  138. // compatibility macros
  139. #define digitalPinToPort(pin) (pin)
  140. #define digitalPinToBitMask(pin) (digital_pin_to_info_PGM[(pin)].mask)
  141. #define portOutputRegister(pin) ((digital_pin_to_info_PGM[(pin)].reg + 0))
  142. #define portSetRegister(pin) ((digital_pin_to_info_PGM[(pin)].reg + 4))
  143. #define portClearRegister(pin) ((digital_pin_to_info_PGM[(pin)].reg + 8))
  144. #define portToggleRegister(pin) ((digital_pin_to_info_PGM[(pin)].reg + 12))
  145. #define portInputRegister(pin) ((digital_pin_to_info_PGM[(pin)].reg + 16))
  146. #define portModeRegister(pin) ((digital_pin_to_info_PGM[(pin)].reg + 20))
  147. #define portConfigRegister(pin) ((digital_pin_to_info_PGM[(pin)].config))
  148. #define digitalPinToPortReg(pin) (portOutputRegister(pin))
  149. //#define digitalPinToBit(pin) (1)
  150. #endif
  151. #define NOT_ON_TIMER 0
  152. static inline uint8_t digitalPinToTimer(uint8_t) __attribute__((always_inline, unused));
  153. static inline uint8_t digitalPinToTimer(uint8_t pin)
  154. {
  155. if (pin >= 3 && pin <= 6) return pin - 2;
  156. if (pin >= 9 && pin <= 10) return pin - 4;
  157. if (pin >= 20 && pin <= 23) return pin - 13;
  158. return NOT_ON_TIMER;
  159. }
  160. // These serial port names are intended to allow libraries and architecture-neutral
  161. // sketches to automatically default to the correct port name for a particular type
  162. // of use. For example, a GPS module would normally connect to SERIAL_PORT_HARDWARE_OPEN,
  163. // the first hardware serial port whose RX/TX pins are not dedicated to another use.
  164. //
  165. // SERIAL_PORT_MONITOR Port which normally prints to the Arduino Serial Monitor
  166. //
  167. // SERIAL_PORT_USBVIRTUAL Port which is USB virtual serial
  168. //
  169. // SERIAL_PORT_LINUXBRIDGE Port which connects to a Linux system via Bridge library
  170. //
  171. // SERIAL_PORT_HARDWARE Hardware serial port, physical RX & TX pins.
  172. //
  173. // SERIAL_PORT_HARDWARE_OPEN Hardware serial ports which are open for use. Their RX & TX
  174. // pins are NOT connected to anything by default.
  175. //
  176. #if F_CPU >= 20000000 && !defined(USB_DISABLED)
  177. #define SERIAL_PORT_MONITOR Serial
  178. #else
  179. #define SERIAL_PORT_MONITOR Serial1
  180. #endif
  181. #define SERIAL_PORT_USBVIRTUAL Serial
  182. #define SERIAL_PORT_HARDWARE Serial1
  183. #define SERIAL_PORT_HARDWARE1 Serial2
  184. #define SERIAL_PORT_HARDWARE2 Serial3
  185. #define SERIAL_PORT_HARDWARE_OPEN Serial1
  186. #define SERIAL_PORT_HARDWARE_OPEN1 Serial2
  187. #define SERIAL_PORT_HARDWARE_OPEN2 Serial3
  188. #define SerialUSB Serial
  189. #endif