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.

787 lines
29KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2018 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. #pragma once
  31. #include "imxrt.h"
  32. #include "pins_arduino.h"
  33. #define HIGH 1
  34. #define LOW 0
  35. #define INPUT 0
  36. #define OUTPUT 1
  37. #define INPUT_PULLUP 2
  38. #define INPUT_PULLDOWN 3
  39. #define OUTPUT_OPENDRAIN 4
  40. #define INPUT_DISABLE 5
  41. #define LSBFIRST 0
  42. #define MSBFIRST 1
  43. #define _BV(n) (1<<(n))
  44. #define CHANGE 4
  45. #define FALLING 2
  46. #define RISING 3
  47. #define CORE_NUM_TOTAL_PINS 34
  48. #define CORE_NUM_DIGITAL 34
  49. #define CORE_NUM_INTERRUPT 34
  50. #define CORE_NUM_ANALOG 14
  51. #define CORE_NUM_PWM 27
  52. #define CORE_PIN0_BIT 3
  53. #define CORE_PIN1_BIT 2
  54. #define CORE_PIN2_BIT 4
  55. #define CORE_PIN3_BIT 5
  56. #define CORE_PIN4_BIT 6
  57. #define CORE_PIN5_BIT 7
  58. #define CORE_PIN6_BIT 17
  59. #define CORE_PIN7_BIT 16
  60. #define CORE_PIN8_BIT 10
  61. #define CORE_PIN9_BIT 11
  62. #define CORE_PIN10_BIT 0
  63. #define CORE_PIN11_BIT 2
  64. #define CORE_PIN12_BIT 1
  65. #define CORE_PIN13_BIT 3
  66. #define CORE_PIN14_BIT 18
  67. #define CORE_PIN15_BIT 19
  68. #define CORE_PIN16_BIT 23
  69. #define CORE_PIN17_BIT 22
  70. #define CORE_PIN18_BIT 17
  71. #define CORE_PIN19_BIT 16
  72. #define CORE_PIN20_BIT 26
  73. #define CORE_PIN21_BIT 27
  74. #define CORE_PIN22_BIT 24
  75. #define CORE_PIN23_BIT 25
  76. #define CORE_PIN24_BIT 12
  77. #define CORE_PIN25_BIT 13
  78. #define CORE_PIN26_BIT 30
  79. #define CORE_PIN27_BIT 31
  80. #define CORE_PIN28_BIT 18
  81. #define CORE_PIN29_BIT 31
  82. #define CORE_PIN30_BIT 24
  83. #define CORE_PIN31_BIT 23
  84. #define CORE_PIN32_BIT 12
  85. #define CORE_PIN33_BIT 8
  86. #define CORE_PIN0_BITMASK (1<<(CORE_PIN0_BIT))
  87. #define CORE_PIN1_BITMASK (1<<(CORE_PIN1_BIT))
  88. #define CORE_PIN2_BITMASK (1<<(CORE_PIN2_BIT))
  89. #define CORE_PIN3_BITMASK (1<<(CORE_PIN3_BIT))
  90. #define CORE_PIN4_BITMASK (1<<(CORE_PIN4_BIT))
  91. #define CORE_PIN5_BITMASK (1<<(CORE_PIN5_BIT))
  92. #define CORE_PIN6_BITMASK (1<<(CORE_PIN6_BIT))
  93. #define CORE_PIN7_BITMASK (1<<(CORE_PIN7_BIT))
  94. #define CORE_PIN8_BITMASK (1<<(CORE_PIN8_BIT))
  95. #define CORE_PIN9_BITMASK (1<<(CORE_PIN9_BIT))
  96. #define CORE_PIN10_BITMASK (1<<(CORE_PIN10_BIT))
  97. #define CORE_PIN11_BITMASK (1<<(CORE_PIN11_BIT))
  98. #define CORE_PIN12_BITMASK (1<<(CORE_PIN12_BIT))
  99. #define CORE_PIN13_BITMASK (1<<(CORE_PIN13_BIT))
  100. #define CORE_PIN14_BITMASK (1<<(CORE_PIN14_BIT))
  101. #define CORE_PIN15_BITMASK (1<<(CORE_PIN15_BIT))
  102. #define CORE_PIN16_BITMASK (1<<(CORE_PIN16_BIT))
  103. #define CORE_PIN17_BITMASK (1<<(CORE_PIN17_BIT))
  104. #define CORE_PIN18_BITMASK (1<<(CORE_PIN18_BIT))
  105. #define CORE_PIN19_BITMASK (1<<(CORE_PIN19_BIT))
  106. #define CORE_PIN20_BITMASK (1<<(CORE_PIN20_BIT))
  107. #define CORE_PIN21_BITMASK (1<<(CORE_PIN21_BIT))
  108. #define CORE_PIN22_BITMASK (1<<(CORE_PIN22_BIT))
  109. #define CORE_PIN23_BITMASK (1<<(CORE_PIN23_BIT))
  110. #define CORE_PIN24_BITMASK (1<<(CORE_PIN24_BIT))
  111. #define CORE_PIN25_BITMASK (1<<(CORE_PIN25_BIT))
  112. #define CORE_PIN26_BITMASK (1<<(CORE_PIN26_BIT))
  113. #define CORE_PIN27_BITMASK (1<<(CORE_PIN27_BIT))
  114. #define CORE_PIN28_BITMASK (1<<(CORE_PIN28_BIT))
  115. #define CORE_PIN29_BITMASK (1<<(CORE_PIN29_BIT))
  116. #define CORE_PIN30_BITMASK (1<<(CORE_PIN30_BIT))
  117. #define CORE_PIN31_BITMASK (1<<(CORE_PIN31_BIT))
  118. #define CORE_PIN32_BITMASK (1<<(CORE_PIN32_BIT))
  119. #define CORE_PIN33_BITMASK (1<<(CORE_PIN33_BIT))
  120. #define CORE_PIN0_PORTREG GPIO1_DR
  121. #define CORE_PIN1_PORTREG GPIO1_DR
  122. #define CORE_PIN2_PORTREG GPIO4_DR
  123. #define CORE_PIN3_PORTREG GPIO4_DR
  124. #define CORE_PIN4_PORTREG GPIO4_DR
  125. #define CORE_PIN5_PORTREG GPIO4_DR
  126. #define CORE_PIN6_PORTREG GPIO2_DR
  127. #define CORE_PIN7_PORTREG GPIO2_DR
  128. #define CORE_PIN8_PORTREG GPIO2_DR
  129. #define CORE_PIN9_PORTREG GPIO2_DR
  130. #define CORE_PIN10_PORTREG GPIO2_DR
  131. #define CORE_PIN11_PORTREG GPIO2_DR
  132. #define CORE_PIN12_PORTREG GPIO2_DR
  133. #define CORE_PIN13_PORTREG GPIO2_DR
  134. #define CORE_PIN14_PORTREG GPIO1_DR
  135. #define CORE_PIN15_PORTREG GPIO1_DR
  136. #define CORE_PIN16_PORTREG GPIO1_DR
  137. #define CORE_PIN17_PORTREG GPIO1_DR
  138. #define CORE_PIN18_PORTREG GPIO1_DR
  139. #define CORE_PIN19_PORTREG GPIO1_DR
  140. #define CORE_PIN20_PORTREG GPIO1_DR
  141. #define CORE_PIN21_PORTREG GPIO1_DR
  142. #define CORE_PIN22_PORTREG GPIO1_DR
  143. #define CORE_PIN23_PORTREG GPIO1_DR
  144. #define CORE_PIN24_PORTREG GPIO1_DR
  145. #define CORE_PIN25_PORTREG GPIO1_DR
  146. #define CORE_PIN26_PORTREG GPIO1_DR
  147. #define CORE_PIN27_PORTREG GPIO1_DR
  148. #define CORE_PIN28_PORTREG GPIO3_DR
  149. #define CORE_PIN29_PORTREG GPIO4_DR
  150. #define CORE_PIN30_PORTREG GPIO4_DR
  151. #define CORE_PIN31_PORTREG GPIO4_DR
  152. #define CORE_PIN32_PORTREG GPIO2_DR
  153. #define CORE_PIN33_PORTREG GPIO4_DR
  154. #define CORE_PIN0_PORTSET GPIO1_DR_SET
  155. #define CORE_PIN1_PORTSET GPIO1_DR_SET
  156. #define CORE_PIN2_PORTSET GPIO4_DR_SET
  157. #define CORE_PIN3_PORTSET GPIO4_DR_SET
  158. #define CORE_PIN4_PORTSET GPIO4_DR_SET
  159. #define CORE_PIN5_PORTSET GPIO4_DR_SET
  160. #define CORE_PIN6_PORTSET GPIO2_DR_SET
  161. #define CORE_PIN7_PORTSET GPIO2_DR_SET
  162. #define CORE_PIN8_PORTSET GPIO2_DR_SET
  163. #define CORE_PIN9_PORTSET GPIO2_DR_SET
  164. #define CORE_PIN10_PORTSET GPIO2_DR_SET
  165. #define CORE_PIN11_PORTSET GPIO2_DR_SET
  166. #define CORE_PIN12_PORTSET GPIO2_DR_SET
  167. #define CORE_PIN13_PORTSET GPIO2_DR_SET
  168. #define CORE_PIN14_PORTSET GPIO1_DR_SET
  169. #define CORE_PIN15_PORTSET GPIO1_DR_SET
  170. #define CORE_PIN16_PORTSET GPIO1_DR_SET
  171. #define CORE_PIN17_PORTSET GPIO1_DR_SET
  172. #define CORE_PIN18_PORTSET GPIO1_DR_SET
  173. #define CORE_PIN19_PORTSET GPIO1_DR_SET
  174. #define CORE_PIN20_PORTSET GPIO1_DR_SET
  175. #define CORE_PIN21_PORTSET GPIO1_DR_SET
  176. #define CORE_PIN22_PORTSET GPIO1_DR_SET
  177. #define CORE_PIN23_PORTSET GPIO1_DR_SET
  178. #define CORE_PIN24_PORTSET GPIO1_DR_SET
  179. #define CORE_PIN25_PORTSET GPIO1_DR_SET
  180. #define CORE_PIN26_PORTSET GPIO1_DR_SET
  181. #define CORE_PIN27_PORTSET GPIO1_DR_SET
  182. #define CORE_PIN28_PORTSET GPIO3_DR_SET
  183. #define CORE_PIN29_PORTSET GPIO4_DR_SET
  184. #define CORE_PIN30_PORTSET GPIO4_DR_SET
  185. #define CORE_PIN31_PORTSET GPIO4_DR_SET
  186. #define CORE_PIN32_PORTSET GPIO2_DR_SET
  187. #define CORE_PIN33_PORTSET GPIO4_DR_SET
  188. #define CORE_PIN0_PORTCLEAR GPIO1_DR_CLEAR
  189. #define CORE_PIN1_PORTCLEAR GPIO1_DR_CLEAR
  190. #define CORE_PIN2_PORTCLEAR GPIO4_DR_CLEAR
  191. #define CORE_PIN3_PORTCLEAR GPIO4_DR_CLEAR
  192. #define CORE_PIN4_PORTCLEAR GPIO4_DR_CLEAR
  193. #define CORE_PIN5_PORTCLEAR GPIO4_DR_CLEAR
  194. #define CORE_PIN6_PORTCLEAR GPIO2_DR_CLEAR
  195. #define CORE_PIN7_PORTCLEAR GPIO2_DR_CLEAR
  196. #define CORE_PIN8_PORTCLEAR GPIO2_DR_CLEAR
  197. #define CORE_PIN9_PORTCLEAR GPIO2_DR_CLEAR
  198. #define CORE_PIN10_PORTCLEAR GPIO2_DR_CLEAR
  199. #define CORE_PIN11_PORTCLEAR GPIO2_DR_CLEAR
  200. #define CORE_PIN12_PORTCLEAR GPIO2_DR_CLEAR
  201. #define CORE_PIN13_PORTCLEAR GPIO2_DR_CLEAR
  202. #define CORE_PIN14_PORTCLEAR GPIO1_DR_CLEAR
  203. #define CORE_PIN15_PORTCLEAR GPIO1_DR_CLEAR
  204. #define CORE_PIN16_PORTCLEAR GPIO1_DR_CLEAR
  205. #define CORE_PIN17_PORTCLEAR GPIO1_DR_CLEAR
  206. #define CORE_PIN18_PORTCLEAR GPIO1_DR_CLEAR
  207. #define CORE_PIN19_PORTCLEAR GPIO1_DR_CLEAR
  208. #define CORE_PIN20_PORTCLEAR GPIO1_DR_CLEAR
  209. #define CORE_PIN21_PORTCLEAR GPIO1_DR_CLEAR
  210. #define CORE_PIN22_PORTCLEAR GPIO1_DR_CLEAR
  211. #define CORE_PIN23_PORTCLEAR GPIO1_DR_CLEAR
  212. #define CORE_PIN24_PORTCLEAR GPIO1_DR_CLEAR
  213. #define CORE_PIN25_PORTCLEAR GPIO1_DR_CLEAR
  214. #define CORE_PIN26_PORTCLEAR GPIO1_DR_CLEAR
  215. #define CORE_PIN27_PORTCLEAR GPIO1_DR_CLEAR
  216. #define CORE_PIN28_PORTCLEAR GPIO3_DR_CLEAR
  217. #define CORE_PIN29_PORTCLEAR GPIO4_DR_CLEAR
  218. #define CORE_PIN30_PORTCLEAR GPIO4_DR_CLEAR
  219. #define CORE_PIN31_PORTCLEAR GPIO4_DR_CLEAR
  220. #define CORE_PIN32_PORTCLEAR GPIO2_DR_CLEAR
  221. #define CORE_PIN33_PORTCLEAR GPIO4_DR_CLEAR
  222. #define CORE_PIN0_DDRREG GPIO1_GDIR
  223. #define CORE_PIN1_DDRREG GPIO1_GDIR
  224. #define CORE_PIN2_DDRREG GPIO4_GDIR
  225. #define CORE_PIN3_DDRREG GPIO4_GDIR
  226. #define CORE_PIN4_DDRREG GPIO4_GDIR
  227. #define CORE_PIN5_DDRREG GPIO4_GDIR
  228. #define CORE_PIN6_DDRREG GPIO2_GDIR
  229. #define CORE_PIN7_DDRREG GPIO2_GDIR
  230. #define CORE_PIN8_DDRREG GPIO2_GDIR
  231. #define CORE_PIN9_DDRREG GPIO2_GDIR
  232. #define CORE_PIN10_DDRREG GPIO2_GDIR
  233. #define CORE_PIN11_DDRREG GPIO2_GDIR
  234. #define CORE_PIN12_DDRREG GPIO2_GDIR
  235. #define CORE_PIN13_DDRREG GPIO2_GDIR
  236. #define CORE_PIN14_DDRREG GPIO1_GDIR
  237. #define CORE_PIN15_DDRREG GPIO1_GDIR
  238. #define CORE_PIN16_DDRREG GPIO1_GDIR
  239. #define CORE_PIN17_DDRREG GPIO1_GDIR
  240. #define CORE_PIN18_DDRREG GPIO1_GDIR
  241. #define CORE_PIN19_DDRREG GPIO1_GDIR
  242. #define CORE_PIN20_DDRREG GPIO1_GDIR
  243. #define CORE_PIN21_DDRREG GPIO1_GDIR
  244. #define CORE_PIN22_DDRREG GPIO1_GDIR
  245. #define CORE_PIN23_DDRREG GPIO1_GDIR
  246. #define CORE_PIN24_DDRREG GPIO1_GDIR
  247. #define CORE_PIN25_DDRREG GPIO1_GDIR
  248. #define CORE_PIN26_DDRREG GPIO1_GDIR
  249. #define CORE_PIN27_DDRREG GPIO1_GDIR
  250. #define CORE_PIN28_DDRREG GPIO3_GDIR
  251. #define CORE_PIN29_DDRREG GPIO4_GDIR
  252. #define CORE_PIN30_DDRREG GPIO4_GDIR
  253. #define CORE_PIN31_DDRREG GPIO4_GDIR
  254. #define CORE_PIN32_DDRREG GPIO2_GDIR
  255. #define CORE_PIN33_DDRREG GPIO4_GDIR
  256. #define CORE_PIN0_PINREG GPIO1_PSR
  257. #define CORE_PIN1_PINREG GPIO1_PSR
  258. #define CORE_PIN2_PINREG GPIO4_PSR
  259. #define CORE_PIN3_PINREG GPIO4_PSR
  260. #define CORE_PIN4_PINREG GPIO4_PSR
  261. #define CORE_PIN5_PINREG GPIO4_PSR
  262. #define CORE_PIN6_PINREG GPIO2_PSR
  263. #define CORE_PIN7_PINREG GPIO2_PSR
  264. #define CORE_PIN8_PINREG GPIO2_PSR
  265. #define CORE_PIN9_PINREG GPIO2_PSR
  266. #define CORE_PIN10_PINREG GPIO2_PSR
  267. #define CORE_PIN11_PINREG GPIO2_PSR
  268. #define CORE_PIN12_PINREG GPIO2_PSR
  269. #define CORE_PIN13_PINREG GPIO2_PSR
  270. #define CORE_PIN14_PINREG GPIO1_PSR
  271. #define CORE_PIN15_PINREG GPIO1_PSR
  272. #define CORE_PIN16_PINREG GPIO1_PSR
  273. #define CORE_PIN17_PINREG GPIO1_PSR
  274. #define CORE_PIN18_PINREG GPIO1_PSR
  275. #define CORE_PIN19_PINREG GPIO1_PSR
  276. #define CORE_PIN20_PINREG GPIO1_PSR
  277. #define CORE_PIN21_PINREG GPIO1_PSR
  278. #define CORE_PIN22_PINREG GPIO1_PSR
  279. #define CORE_PIN23_PINREG GPIO1_PSR
  280. #define CORE_PIN24_PINREG GPIO1_PSR
  281. #define CORE_PIN25_PINREG GPIO1_PSR
  282. #define CORE_PIN26_PINREG GPIO1_PSR
  283. #define CORE_PIN27_PINREG GPIO1_PSR
  284. #define CORE_PIN28_PINREG GPIO3_PSR
  285. #define CORE_PIN29_PINREG GPIO4_PSR
  286. #define CORE_PIN30_PINREG GPIO4_PSR
  287. #define CORE_PIN31_PINREG GPIO4_PSR
  288. #define CORE_PIN32_PINREG GPIO2_PSR
  289. #define CORE_PIN33_PINREG GPIO4_PSR
  290. // mux config registers control which peripheral uses the pin
  291. #define CORE_PIN0_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_03
  292. #define CORE_PIN1_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_02
  293. #define CORE_PIN2_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_04
  294. #define CORE_PIN3_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_05
  295. #define CORE_PIN4_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_06
  296. #define CORE_PIN5_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_07
  297. #define CORE_PIN6_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B1_01
  298. #define CORE_PIN7_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B1_00
  299. #define CORE_PIN8_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_10
  300. #define CORE_PIN9_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_11
  301. #define CORE_PIN10_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_00
  302. #define CORE_PIN11_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_02
  303. #define CORE_PIN12_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_01
  304. #define CORE_PIN13_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_03
  305. #define CORE_PIN14_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_02
  306. #define CORE_PIN15_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_03
  307. #define CORE_PIN16_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_07
  308. #define CORE_PIN17_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_06
  309. #define CORE_PIN18_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_01
  310. #define CORE_PIN19_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_00
  311. #define CORE_PIN20_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_10
  312. #define CORE_PIN21_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_11
  313. #define CORE_PIN22_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_08
  314. #define CORE_PIN23_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_09
  315. #define CORE_PIN24_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_12
  316. #define CORE_PIN25_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B0_13
  317. #define CORE_PIN26_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_14
  318. #define CORE_PIN27_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_AD_B1_15
  319. #define CORE_PIN28_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_32
  320. #define CORE_PIN29_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_31
  321. #define CORE_PIN30_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_24
  322. #define CORE_PIN31_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_23
  323. #define CORE_PIN32_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_12
  324. #define CORE_PIN33_CONFIG IOMUXC_SW_MUX_CTL_PAD_GPIO_EMC_08
  325. // pad config registers control pullup/pulldown/keeper, drive strength, etc
  326. #define CORE_PIN0_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_02
  327. #define CORE_PIN1_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_03
  328. #define CORE_PIN2_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_04
  329. #define CORE_PIN3_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_05
  330. #define CORE_PIN4_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_06
  331. #define CORE_PIN5_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_07
  332. #define CORE_PIN6_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B1_01
  333. #define CORE_PIN7_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B1_00
  334. #define CORE_PIN8_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_10
  335. #define CORE_PIN9_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_11
  336. #define CORE_PIN10_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_00
  337. #define CORE_PIN11_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_02
  338. #define CORE_PIN12_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_01
  339. #define CORE_PIN13_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03
  340. #define CORE_PIN14_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_02
  341. #define CORE_PIN15_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_03
  342. #define CORE_PIN16_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_07
  343. #define CORE_PIN17_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_06
  344. #define CORE_PIN18_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_01
  345. #define CORE_PIN19_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_00
  346. #define CORE_PIN20_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_10
  347. #define CORE_PIN21_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_11
  348. #define CORE_PIN22_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_08
  349. #define CORE_PIN23_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_09
  350. #define CORE_PIN24_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_12
  351. #define CORE_PIN25_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B0_13
  352. #define CORE_PIN26_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_14
  353. #define CORE_PIN27_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_15
  354. #define CORE_PIN28_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_32
  355. #define CORE_PIN29_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_31
  356. #define CORE_PIN30_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_24
  357. #define CORE_PIN31_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_23
  358. #define CORE_PIN32_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_12
  359. #define CORE_PIN33_PADCONFIG IOMUXC_SW_PAD_CTL_PAD_GPIO_EMC_08
  360. #define CORE_ADC0_PIN 14
  361. #define CORE_ADC1_PIN 15
  362. #define CORE_ADC2_PIN 16
  363. #define CORE_ADC3_PIN 17
  364. #define CORE_ADC4_PIN 18
  365. #define CORE_ADC5_PIN 19
  366. #define CORE_ADC6_PIN 20
  367. #define CORE_ADC7_PIN 21
  368. #define CORE_ADC8_PIN 22
  369. #define CORE_ADC9_PIN 23
  370. #define CORE_RXD0_PIN 0
  371. #define CORE_TXD0_PIN 1
  372. #define CORE_RXD1_PIN 6
  373. #define CORE_TXD1_PIN 7
  374. #define CORE_RXD2_PIN 15
  375. #define CORE_TXD2_PIN 14
  376. #define CORE_RXD3_PIN 16
  377. #define CORE_TXD3_PIN 17
  378. #define CORE_RXD4_PIN 21
  379. #define CORE_TXD4_PIN 20
  380. #define CORE_RXD5_PIN 25
  381. #define CORE_TXD5_PIN 24
  382. #define CORE_RXD6_PIN 28
  383. #define CORE_TXD6_PIN 29
  384. #define CORE_RXD7_PIN 30
  385. #define CORE_TXD7_PIN 31
  386. #define CORE_INT0_PIN 0
  387. #define CORE_INT1_PIN 1
  388. #define CORE_INT2_PIN 2
  389. #define CORE_INT3_PIN 3
  390. #define CORE_INT4_PIN 4
  391. #define CORE_INT5_PIN 5
  392. #define CORE_INT6_PIN 6
  393. #define CORE_INT7_PIN 7
  394. #define CORE_INT8_PIN 8
  395. #define CORE_INT9_PIN 9
  396. #define CORE_INT10_PIN 10
  397. #define CORE_INT11_PIN 11
  398. #define CORE_INT12_PIN 12
  399. #define CORE_INT13_PIN 13
  400. #define CORE_INT14_PIN 14
  401. #define CORE_INT15_PIN 15
  402. #define CORE_INT16_PIN 16
  403. #define CORE_INT17_PIN 17
  404. #define CORE_INT18_PIN 18
  405. #define CORE_INT19_PIN 19
  406. #define CORE_INT20_PIN 20
  407. #define CORE_INT21_PIN 21
  408. #define CORE_INT22_PIN 22
  409. #define CORE_INT23_PIN 23
  410. #define CORE_INT24_PIN 24
  411. #define CORE_INT25_PIN 25
  412. #define CORE_INT26_PIN 26
  413. #define CORE_INT27_PIN 27
  414. #define CORE_INT28_PIN 28
  415. #define CORE_INT29_PIN 29
  416. #define CORE_INT30_PIN 30
  417. #define CORE_INT31_PIN 31
  418. #define CORE_INT32_PIN 32
  419. #define CORE_INT33_PIN 33
  420. #define CORE_INT_EVERY_PIN 1
  421. #ifdef __cplusplus
  422. extern "C" {
  423. #endif
  424. void digitalWrite(uint8_t pin, uint8_t val);
  425. static inline void digitalWriteFast(uint8_t pin, uint8_t val) __attribute__((always_inline, unused));
  426. static inline void digitalWriteFast(uint8_t pin, uint8_t val)
  427. {
  428. if (__builtin_constant_p(pin)) {
  429. if (val) {
  430. if (pin == 0) {
  431. CORE_PIN0_PORTSET = CORE_PIN0_BITMASK;
  432. } else if (pin == 1) {
  433. CORE_PIN1_PORTSET = CORE_PIN1_BITMASK;
  434. } else if (pin == 2) {
  435. CORE_PIN2_PORTSET = CORE_PIN2_BITMASK;
  436. } else if (pin == 3) {
  437. CORE_PIN3_PORTSET = CORE_PIN3_BITMASK;
  438. } else if (pin == 4) {
  439. CORE_PIN4_PORTSET = CORE_PIN4_BITMASK;
  440. } else if (pin == 5) {
  441. CORE_PIN5_PORTSET = CORE_PIN5_BITMASK;
  442. } else if (pin == 6) {
  443. CORE_PIN6_PORTSET = CORE_PIN6_BITMASK;
  444. } else if (pin == 7) {
  445. CORE_PIN7_PORTSET = CORE_PIN7_BITMASK;
  446. } else if (pin == 8) {
  447. CORE_PIN8_PORTSET = CORE_PIN8_BITMASK;
  448. } else if (pin == 9) {
  449. CORE_PIN9_PORTSET = CORE_PIN9_BITMASK;
  450. } else if (pin == 10) {
  451. CORE_PIN10_PORTSET = CORE_PIN10_BITMASK;
  452. } else if (pin == 11) {
  453. CORE_PIN11_PORTSET = CORE_PIN11_BITMASK;
  454. } else if (pin == 12) {
  455. CORE_PIN12_PORTSET = CORE_PIN12_BITMASK;
  456. } else if (pin == 13) {
  457. CORE_PIN13_PORTSET = CORE_PIN13_BITMASK;
  458. } else if (pin == 14) {
  459. CORE_PIN14_PORTSET = CORE_PIN14_BITMASK;
  460. } else if (pin == 15) {
  461. CORE_PIN15_PORTSET = CORE_PIN15_BITMASK;
  462. } else if (pin == 16) {
  463. CORE_PIN16_PORTSET = CORE_PIN16_BITMASK;
  464. } else if (pin == 17) {
  465. CORE_PIN17_PORTSET = CORE_PIN17_BITMASK;
  466. } else if (pin == 18) {
  467. CORE_PIN18_PORTSET = CORE_PIN18_BITMASK;
  468. } else if (pin == 19) {
  469. CORE_PIN19_PORTSET = CORE_PIN19_BITMASK;
  470. } else if (pin == 20) {
  471. CORE_PIN20_PORTSET = CORE_PIN20_BITMASK;
  472. } else if (pin == 21) {
  473. CORE_PIN21_PORTSET = CORE_PIN21_BITMASK;
  474. } else if (pin == 22) {
  475. CORE_PIN22_PORTSET = CORE_PIN22_BITMASK;
  476. } else if (pin == 23) {
  477. CORE_PIN23_PORTSET = CORE_PIN23_BITMASK;
  478. } else if (pin == 24) {
  479. CORE_PIN24_PORTSET = CORE_PIN24_BITMASK;
  480. } else if (pin == 25) {
  481. CORE_PIN25_PORTSET = CORE_PIN25_BITMASK;
  482. } else if (pin == 26) {
  483. CORE_PIN26_PORTSET = CORE_PIN26_BITMASK;
  484. } else if (pin == 27) {
  485. CORE_PIN27_PORTSET = CORE_PIN27_BITMASK;
  486. } else if (pin == 28) {
  487. CORE_PIN28_PORTSET = CORE_PIN28_BITMASK;
  488. } else if (pin == 29) {
  489. CORE_PIN29_PORTSET = CORE_PIN29_BITMASK;
  490. } else if (pin == 30) {
  491. CORE_PIN30_PORTSET = CORE_PIN30_BITMASK;
  492. } else if (pin == 31) {
  493. CORE_PIN31_PORTSET = CORE_PIN31_BITMASK;
  494. } else if (pin == 32) {
  495. CORE_PIN32_PORTSET = CORE_PIN32_BITMASK;
  496. } else if (pin == 33) {
  497. CORE_PIN33_PORTSET = CORE_PIN33_BITMASK;
  498. }
  499. } else {
  500. if (pin == 0) {
  501. CORE_PIN0_PORTCLEAR = CORE_PIN0_BITMASK;
  502. } else if (pin == 1) {
  503. CORE_PIN1_PORTCLEAR = CORE_PIN1_BITMASK;
  504. } else if (pin == 2) {
  505. CORE_PIN2_PORTCLEAR = CORE_PIN2_BITMASK;
  506. } else if (pin == 3) {
  507. CORE_PIN3_PORTCLEAR = CORE_PIN3_BITMASK;
  508. } else if (pin == 4) {
  509. CORE_PIN4_PORTCLEAR = CORE_PIN4_BITMASK;
  510. } else if (pin == 5) {
  511. CORE_PIN5_PORTCLEAR = CORE_PIN5_BITMASK;
  512. } else if (pin == 6) {
  513. CORE_PIN6_PORTCLEAR = CORE_PIN6_BITMASK;
  514. } else if (pin == 7) {
  515. CORE_PIN7_PORTCLEAR = CORE_PIN7_BITMASK;
  516. } else if (pin == 8) {
  517. CORE_PIN8_PORTCLEAR = CORE_PIN8_BITMASK;
  518. } else if (pin == 9) {
  519. CORE_PIN9_PORTCLEAR = CORE_PIN9_BITMASK;
  520. } else if (pin == 10) {
  521. CORE_PIN10_PORTCLEAR = CORE_PIN10_BITMASK;
  522. } else if (pin == 11) {
  523. CORE_PIN11_PORTCLEAR = CORE_PIN11_BITMASK;
  524. } else if (pin == 12) {
  525. CORE_PIN12_PORTCLEAR = CORE_PIN12_BITMASK;
  526. } else if (pin == 13) {
  527. CORE_PIN13_PORTCLEAR = CORE_PIN13_BITMASK;
  528. } else if (pin == 14) {
  529. CORE_PIN14_PORTCLEAR = CORE_PIN14_BITMASK;
  530. } else if (pin == 15) {
  531. CORE_PIN15_PORTCLEAR = CORE_PIN15_BITMASK;
  532. } else if (pin == 16) {
  533. CORE_PIN16_PORTCLEAR = CORE_PIN16_BITMASK;
  534. } else if (pin == 17) {
  535. CORE_PIN17_PORTCLEAR = CORE_PIN17_BITMASK;
  536. } else if (pin == 18) {
  537. CORE_PIN18_PORTCLEAR = CORE_PIN18_BITMASK;
  538. } else if (pin == 19) {
  539. CORE_PIN19_PORTCLEAR = CORE_PIN19_BITMASK;
  540. } else if (pin == 20) {
  541. CORE_PIN20_PORTCLEAR = CORE_PIN20_BITMASK;
  542. } else if (pin == 21) {
  543. CORE_PIN21_PORTCLEAR = CORE_PIN21_BITMASK;
  544. } else if (pin == 22) {
  545. CORE_PIN22_PORTCLEAR = CORE_PIN22_BITMASK;
  546. } else if (pin == 23) {
  547. CORE_PIN23_PORTCLEAR = CORE_PIN23_BITMASK;
  548. } else if (pin == 24) {
  549. CORE_PIN24_PORTCLEAR = CORE_PIN24_BITMASK;
  550. } else if (pin == 25) {
  551. CORE_PIN25_PORTCLEAR = CORE_PIN25_BITMASK;
  552. } else if (pin == 26) {
  553. CORE_PIN26_PORTCLEAR = CORE_PIN26_BITMASK;
  554. } else if (pin == 27) {
  555. CORE_PIN27_PORTCLEAR = CORE_PIN27_BITMASK;
  556. } else if (pin == 28) {
  557. CORE_PIN28_PORTCLEAR = CORE_PIN28_BITMASK;
  558. } else if (pin == 29) {
  559. CORE_PIN29_PORTCLEAR = CORE_PIN29_BITMASK;
  560. } else if (pin == 30) {
  561. CORE_PIN30_PORTCLEAR = CORE_PIN30_BITMASK;
  562. } else if (pin == 31) {
  563. CORE_PIN31_PORTCLEAR = CORE_PIN31_BITMASK;
  564. } else if (pin == 32) {
  565. CORE_PIN32_PORTCLEAR = CORE_PIN32_BITMASK;
  566. } else if (pin == 33) {
  567. CORE_PIN33_PORTCLEAR = CORE_PIN33_BITMASK;
  568. }
  569. }
  570. } else {
  571. *portClearRegister(pin) = digitalPinToBitMask(pin);
  572. }
  573. }
  574. uint8_t digitalRead(uint8_t pin);
  575. static inline uint8_t digitalReadFast(uint8_t pin) __attribute__((always_inline, unused));
  576. static inline uint8_t digitalReadFast(uint8_t pin)
  577. {
  578. if (__builtin_constant_p(pin)) {
  579. if (pin == 0) {
  580. return (CORE_PIN0_PINREG & CORE_PIN0_BITMASK) ? 1 : 0;
  581. } else if (pin == 1) {
  582. return (CORE_PIN1_PINREG & CORE_PIN1_BITMASK) ? 1 : 0;
  583. } else if (pin == 2) {
  584. return (CORE_PIN2_PINREG & CORE_PIN2_BITMASK) ? 1 : 0;
  585. } else if (pin == 3) {
  586. return (CORE_PIN3_PINREG & CORE_PIN3_BITMASK) ? 1 : 0;
  587. } else if (pin == 4) {
  588. return (CORE_PIN4_PINREG & CORE_PIN4_BITMASK) ? 1 : 0;
  589. } else if (pin == 5) {
  590. return (CORE_PIN5_PINREG & CORE_PIN5_BITMASK) ? 1 : 0;
  591. } else if (pin == 6) {
  592. return (CORE_PIN6_PINREG & CORE_PIN6_BITMASK) ? 1 : 0;
  593. } else if (pin == 7) {
  594. return (CORE_PIN7_PINREG & CORE_PIN7_BITMASK) ? 1 : 0;
  595. } else if (pin == 8) {
  596. return (CORE_PIN8_PINREG & CORE_PIN8_BITMASK) ? 1 : 0;
  597. } else if (pin == 9) {
  598. return (CORE_PIN9_PINREG & CORE_PIN9_BITMASK) ? 1 : 0;
  599. } else if (pin == 10) {
  600. return (CORE_PIN10_PINREG & CORE_PIN10_BITMASK) ? 1 : 0;
  601. } else if (pin == 11) {
  602. return (CORE_PIN11_PINREG & CORE_PIN11_BITMASK) ? 1 : 0;
  603. } else if (pin == 12) {
  604. return (CORE_PIN12_PINREG & CORE_PIN12_BITMASK) ? 1 : 0;
  605. } else if (pin == 13) {
  606. return (CORE_PIN13_PINREG & CORE_PIN13_BITMASK) ? 1 : 0;
  607. } else if (pin == 14) {
  608. return (CORE_PIN14_PINREG & CORE_PIN14_BITMASK) ? 1 : 0;
  609. } else if (pin == 15) {
  610. return (CORE_PIN15_PINREG & CORE_PIN15_BITMASK) ? 1 : 0;
  611. } else if (pin == 16) {
  612. return (CORE_PIN16_PINREG & CORE_PIN16_BITMASK) ? 1 : 0;
  613. } else if (pin == 17) {
  614. return (CORE_PIN17_PINREG & CORE_PIN17_BITMASK) ? 1 : 0;
  615. } else if (pin == 18) {
  616. return (CORE_PIN18_PINREG & CORE_PIN18_BITMASK) ? 1 : 0;
  617. } else if (pin == 19) {
  618. return (CORE_PIN19_PINREG & CORE_PIN19_BITMASK) ? 1 : 0;
  619. } else if (pin == 20) {
  620. return (CORE_PIN20_PINREG & CORE_PIN20_BITMASK) ? 1 : 0;
  621. } else if (pin == 21) {
  622. return (CORE_PIN21_PINREG & CORE_PIN21_BITMASK) ? 1 : 0;
  623. } else if (pin == 22) {
  624. return (CORE_PIN22_PINREG & CORE_PIN22_BITMASK) ? 1 : 0;
  625. } else if (pin == 23) {
  626. return (CORE_PIN23_PINREG & CORE_PIN23_BITMASK) ? 1 : 0;
  627. } else if (pin == 24) {
  628. return (CORE_PIN24_PINREG & CORE_PIN24_BITMASK) ? 1 : 0;
  629. } else if (pin == 25) {
  630. return (CORE_PIN25_PINREG & CORE_PIN25_BITMASK) ? 1 : 0;
  631. } else if (pin == 26) {
  632. return (CORE_PIN26_PINREG & CORE_PIN26_BITMASK) ? 1 : 0;
  633. } else if (pin == 27) {
  634. return (CORE_PIN27_PINREG & CORE_PIN27_BITMASK) ? 1 : 0;
  635. } else if (pin == 28) {
  636. return (CORE_PIN28_PINREG & CORE_PIN28_BITMASK) ? 1 : 0;
  637. } else if (pin == 29) {
  638. return (CORE_PIN29_PINREG & CORE_PIN29_BITMASK) ? 1 : 0;
  639. } else if (pin == 30) {
  640. return (CORE_PIN30_PINREG & CORE_PIN30_BITMASK) ? 1 : 0;
  641. } else if (pin == 31) {
  642. return (CORE_PIN31_PINREG & CORE_PIN31_BITMASK) ? 1 : 0;
  643. } else if (pin == 32) {
  644. return (CORE_PIN32_PINREG & CORE_PIN32_BITMASK) ? 1 : 0;
  645. } else if (pin == 33) {
  646. return (CORE_PIN33_PINREG & CORE_PIN33_BITMASK) ? 1 : 0;
  647. } else {
  648. return 0;
  649. }
  650. } else {
  651. return (*portInputRegister(pin) & digitalPinToBitMask(pin)) ? 1 : 0;
  652. }
  653. }
  654. void pinMode(uint8_t pin, uint8_t mode);
  655. void init_pins(void);
  656. void analogWrite(uint8_t pin, int val);
  657. uint32_t analogWriteRes(uint32_t bits);
  658. static inline uint32_t analogWriteResolution(uint32_t bits) { return analogWriteRes(bits); }
  659. void analogWriteFrequency(uint8_t pin, float frequency);
  660. void attachInterrupt(uint8_t pin, void (*function)(void), int mode);
  661. void detachInterrupt(uint8_t pin);
  662. void _init_Teensyduino_internal_(void);
  663. int analogRead(uint8_t pin);
  664. void analogReference(uint8_t type);
  665. void analogReadRes(unsigned int bits);
  666. static inline void analogReadResolution(unsigned int bits) { analogReadRes(bits); }
  667. void analogReadAveraging(unsigned int num);
  668. void analog_init(void);
  669. int touchRead(uint8_t pin);
  670. static inline void shiftOut(uint8_t, uint8_t, uint8_t, uint8_t) __attribute__((always_inline, unused));
  671. extern void _shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t value) __attribute__((noinline));
  672. extern void shiftOut_lsbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value) __attribute__((noinline));
  673. extern void shiftOut_msbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value) __attribute__((noinline));
  674. static inline void shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t value)
  675. {
  676. if (__builtin_constant_p(bitOrder)) {
  677. if (bitOrder == LSBFIRST) {
  678. shiftOut_lsbFirst(dataPin, clockPin, value);
  679. } else {
  680. shiftOut_msbFirst(dataPin, clockPin, value);
  681. }
  682. } else {
  683. _shiftOut(dataPin, clockPin, bitOrder, value);
  684. }
  685. }
  686. static inline uint8_t shiftIn(uint8_t, uint8_t, uint8_t) __attribute__((always_inline, unused));
  687. extern uint8_t _shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder) __attribute__((noinline));
  688. extern uint8_t shiftIn_lsbFirst(uint8_t dataPin, uint8_t clockPin) __attribute__((noinline));
  689. extern uint8_t shiftIn_msbFirst(uint8_t dataPin, uint8_t clockPin) __attribute__((noinline));
  690. static inline uint8_t shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder)
  691. {
  692. if (__builtin_constant_p(bitOrder)) {
  693. if (bitOrder == LSBFIRST) {
  694. return shiftIn_lsbFirst(dataPin, clockPin);
  695. } else {
  696. return shiftIn_msbFirst(dataPin, clockPin);
  697. }
  698. } else {
  699. return _shiftIn(dataPin, clockPin, bitOrder);
  700. }
  701. }
  702. void _reboot_Teensyduino_(void) __attribute__((noreturn));
  703. void _restart_Teensyduino_(void) __attribute__((noreturn));
  704. void yield(void);
  705. void delay(uint32_t msec);
  706. extern volatile uint32_t F_CPU_ACTUAL;
  707. extern volatile uint32_t F_BUS_ACTUAL;
  708. extern volatile uint32_t systick_millis_count;
  709. static inline uint32_t millis(void) __attribute__((always_inline, unused));
  710. static inline uint32_t millis(void)
  711. {
  712. return systick_millis_count;
  713. }
  714. uint32_t micros(void);
  715. static inline void delayMicroseconds(uint32_t) __attribute__((always_inline, unused));
  716. static inline void delayMicroseconds(uint32_t usec)
  717. {
  718. uint32_t begin = ARM_DWT_CYCCNT;
  719. uint32_t cycles = F_CPU_ACTUAL / 1000000 * usec;
  720. // TODO: check if cycles is large, do a wait with yield calls until it's smaller
  721. while (ARM_DWT_CYCCNT - begin < cycles) ; // wait
  722. }
  723. static inline void delayNanoseconds(uint32_t) __attribute__((always_inline, unused));
  724. static inline void delayNanoseconds(uint32_t nsec)
  725. {
  726. uint32_t begin = ARM_DWT_CYCCNT;
  727. uint32_t cycles = ((F_CPU_ACTUAL>>16) * nsec) / (1000000000UL>>16);
  728. while (ARM_DWT_CYCCNT - begin < cycles) ; // wait
  729. }
  730. unsigned long rtc_get(void);
  731. void rtc_set(unsigned long t);
  732. void rtc_compensate(int adjust);
  733. #ifdef __cplusplus
  734. }
  735. class teensy3_clock_class
  736. {
  737. public:
  738. static unsigned long get(void) __attribute__((always_inline)) { return rtc_get(); }
  739. static void set(unsigned long t) __attribute__((always_inline)) { rtc_set(t); }
  740. static void compensate(int adj) __attribute__((always_inline)) { rtc_compensate(adj); }
  741. };
  742. extern teensy3_clock_class Teensy3Clock;
  743. #endif // __cplusplus