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.

pins_teensy.c 38KB

9 vuotta sitten
9 vuotta sitten
9 vuotta sitten
9 vuotta sitten
9 vuotta sitten
9 vuotta sitten
9 vuotta sitten
9 vuotta sitten
11 vuotta sitten
9 vuotta sitten
11 vuotta sitten
9 vuotta sitten
9 vuotta sitten
11 vuotta sitten
11 vuotta sitten
9 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
9 vuotta sitten
11 vuotta sitten
9 vuotta sitten
9 vuotta sitten
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216
  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. #include "core_pins.h"
  31. #include "pins_arduino.h"
  32. #include "HardwareSerial.h"
  33. #if defined(KINETISK)
  34. #define GPIO_BITBAND_ADDR(reg, bit) (((uint32_t)&(reg) - 0x40000000) * 32 + (bit) * 4 + 0x42000000)
  35. #define GPIO_BITBAND_PTR(reg, bit) ((uint32_t *)GPIO_BITBAND_ADDR((reg), (bit)))
  36. //#define GPIO_SET_BIT(reg, bit) (*GPIO_BITBAND_PTR((reg), (bit)) = 1)
  37. //#define GPIO_CLR_BIT(reg, bit) (*GPIO_BITBAND_PTR((reg), (bit)) = 0)
  38. const struct digital_pin_bitband_and_config_table_struct digital_pin_to_info_PGM[] = {
  39. {GPIO_BITBAND_PTR(CORE_PIN0_PORTREG, CORE_PIN0_BIT), &CORE_PIN0_CONFIG},
  40. {GPIO_BITBAND_PTR(CORE_PIN1_PORTREG, CORE_PIN1_BIT), &CORE_PIN1_CONFIG},
  41. {GPIO_BITBAND_PTR(CORE_PIN2_PORTREG, CORE_PIN2_BIT), &CORE_PIN2_CONFIG},
  42. {GPIO_BITBAND_PTR(CORE_PIN3_PORTREG, CORE_PIN3_BIT), &CORE_PIN3_CONFIG},
  43. {GPIO_BITBAND_PTR(CORE_PIN4_PORTREG, CORE_PIN4_BIT), &CORE_PIN4_CONFIG},
  44. {GPIO_BITBAND_PTR(CORE_PIN5_PORTREG, CORE_PIN5_BIT), &CORE_PIN5_CONFIG},
  45. {GPIO_BITBAND_PTR(CORE_PIN6_PORTREG, CORE_PIN6_BIT), &CORE_PIN6_CONFIG},
  46. {GPIO_BITBAND_PTR(CORE_PIN7_PORTREG, CORE_PIN7_BIT), &CORE_PIN7_CONFIG},
  47. {GPIO_BITBAND_PTR(CORE_PIN8_PORTREG, CORE_PIN8_BIT), &CORE_PIN8_CONFIG},
  48. {GPIO_BITBAND_PTR(CORE_PIN9_PORTREG, CORE_PIN9_BIT), &CORE_PIN9_CONFIG},
  49. {GPIO_BITBAND_PTR(CORE_PIN10_PORTREG, CORE_PIN10_BIT), &CORE_PIN10_CONFIG},
  50. {GPIO_BITBAND_PTR(CORE_PIN11_PORTREG, CORE_PIN11_BIT), &CORE_PIN11_CONFIG},
  51. {GPIO_BITBAND_PTR(CORE_PIN12_PORTREG, CORE_PIN12_BIT), &CORE_PIN12_CONFIG},
  52. {GPIO_BITBAND_PTR(CORE_PIN13_PORTREG, CORE_PIN13_BIT), &CORE_PIN13_CONFIG},
  53. {GPIO_BITBAND_PTR(CORE_PIN14_PORTREG, CORE_PIN14_BIT), &CORE_PIN14_CONFIG},
  54. {GPIO_BITBAND_PTR(CORE_PIN15_PORTREG, CORE_PIN15_BIT), &CORE_PIN15_CONFIG},
  55. {GPIO_BITBAND_PTR(CORE_PIN16_PORTREG, CORE_PIN16_BIT), &CORE_PIN16_CONFIG},
  56. {GPIO_BITBAND_PTR(CORE_PIN17_PORTREG, CORE_PIN17_BIT), &CORE_PIN17_CONFIG},
  57. {GPIO_BITBAND_PTR(CORE_PIN18_PORTREG, CORE_PIN18_BIT), &CORE_PIN18_CONFIG},
  58. {GPIO_BITBAND_PTR(CORE_PIN19_PORTREG, CORE_PIN19_BIT), &CORE_PIN19_CONFIG},
  59. {GPIO_BITBAND_PTR(CORE_PIN20_PORTREG, CORE_PIN20_BIT), &CORE_PIN20_CONFIG},
  60. {GPIO_BITBAND_PTR(CORE_PIN21_PORTREG, CORE_PIN21_BIT), &CORE_PIN21_CONFIG},
  61. {GPIO_BITBAND_PTR(CORE_PIN22_PORTREG, CORE_PIN22_BIT), &CORE_PIN22_CONFIG},
  62. {GPIO_BITBAND_PTR(CORE_PIN23_PORTREG, CORE_PIN23_BIT), &CORE_PIN23_CONFIG},
  63. {GPIO_BITBAND_PTR(CORE_PIN24_PORTREG, CORE_PIN24_BIT), &CORE_PIN24_CONFIG},
  64. {GPIO_BITBAND_PTR(CORE_PIN25_PORTREG, CORE_PIN25_BIT), &CORE_PIN25_CONFIG},
  65. {GPIO_BITBAND_PTR(CORE_PIN26_PORTREG, CORE_PIN26_BIT), &CORE_PIN26_CONFIG},
  66. {GPIO_BITBAND_PTR(CORE_PIN27_PORTREG, CORE_PIN27_BIT), &CORE_PIN27_CONFIG},
  67. {GPIO_BITBAND_PTR(CORE_PIN28_PORTREG, CORE_PIN28_BIT), &CORE_PIN28_CONFIG},
  68. {GPIO_BITBAND_PTR(CORE_PIN29_PORTREG, CORE_PIN29_BIT), &CORE_PIN29_CONFIG},
  69. {GPIO_BITBAND_PTR(CORE_PIN30_PORTREG, CORE_PIN30_BIT), &CORE_PIN30_CONFIG},
  70. {GPIO_BITBAND_PTR(CORE_PIN31_PORTREG, CORE_PIN31_BIT), &CORE_PIN31_CONFIG},
  71. {GPIO_BITBAND_PTR(CORE_PIN32_PORTREG, CORE_PIN32_BIT), &CORE_PIN32_CONFIG},
  72. {GPIO_BITBAND_PTR(CORE_PIN33_PORTREG, CORE_PIN33_BIT), &CORE_PIN33_CONFIG},
  73. #ifdef CORE_PIN34_PORTREG
  74. {GPIO_BITBAND_PTR(CORE_PIN34_PORTREG, CORE_PIN34_BIT), &CORE_PIN34_CONFIG},
  75. {GPIO_BITBAND_PTR(CORE_PIN35_PORTREG, CORE_PIN35_BIT), &CORE_PIN35_CONFIG},
  76. {GPIO_BITBAND_PTR(CORE_PIN36_PORTREG, CORE_PIN36_BIT), &CORE_PIN36_CONFIG},
  77. {GPIO_BITBAND_PTR(CORE_PIN37_PORTREG, CORE_PIN37_BIT), &CORE_PIN37_CONFIG},
  78. {GPIO_BITBAND_PTR(CORE_PIN38_PORTREG, CORE_PIN38_BIT), &CORE_PIN38_CONFIG},
  79. {GPIO_BITBAND_PTR(CORE_PIN39_PORTREG, CORE_PIN39_BIT), &CORE_PIN39_CONFIG},
  80. #endif
  81. };
  82. #elif defined(KINETISL)
  83. const struct digital_pin_bitband_and_config_table_struct digital_pin_to_info_PGM[] = {
  84. {((volatile uint8_t *)&CORE_PIN0_PORTREG + (CORE_PIN0_BIT >> 3)), &CORE_PIN0_CONFIG, (1<<(CORE_PIN0_BIT & 7))},
  85. {((volatile uint8_t *)&CORE_PIN1_PORTREG + (CORE_PIN1_BIT >> 3)), &CORE_PIN1_CONFIG, (1<<(CORE_PIN1_BIT & 7))},
  86. {((volatile uint8_t *)&CORE_PIN2_PORTREG + (CORE_PIN2_BIT >> 3)), &CORE_PIN2_CONFIG, (1<<(CORE_PIN2_BIT & 7))},
  87. {((volatile uint8_t *)&CORE_PIN3_PORTREG + (CORE_PIN3_BIT >> 3)), &CORE_PIN3_CONFIG, (1<<(CORE_PIN3_BIT & 7))},
  88. {((volatile uint8_t *)&CORE_PIN4_PORTREG + (CORE_PIN4_BIT >> 3)), &CORE_PIN4_CONFIG, (1<<(CORE_PIN4_BIT & 7))},
  89. {((volatile uint8_t *)&CORE_PIN5_PORTREG + (CORE_PIN5_BIT >> 3)), &CORE_PIN5_CONFIG, (1<<(CORE_PIN5_BIT & 7))},
  90. {((volatile uint8_t *)&CORE_PIN6_PORTREG + (CORE_PIN6_BIT >> 3)), &CORE_PIN6_CONFIG, (1<<(CORE_PIN6_BIT & 7))},
  91. {((volatile uint8_t *)&CORE_PIN7_PORTREG + (CORE_PIN7_BIT >> 3)), &CORE_PIN7_CONFIG, (1<<(CORE_PIN7_BIT & 7))},
  92. {((volatile uint8_t *)&CORE_PIN8_PORTREG + (CORE_PIN8_BIT >> 3)), &CORE_PIN8_CONFIG, (1<<(CORE_PIN8_BIT & 7))},
  93. {((volatile uint8_t *)&CORE_PIN9_PORTREG + (CORE_PIN9_BIT >> 3)), &CORE_PIN9_CONFIG, (1<<(CORE_PIN9_BIT & 7))},
  94. {((volatile uint8_t *)&CORE_PIN10_PORTREG + (CORE_PIN10_BIT >> 3)), &CORE_PIN10_CONFIG, (1<<(CORE_PIN10_BIT & 7))},
  95. {((volatile uint8_t *)&CORE_PIN11_PORTREG + (CORE_PIN11_BIT >> 3)), &CORE_PIN11_CONFIG, (1<<(CORE_PIN11_BIT & 7))},
  96. {((volatile uint8_t *)&CORE_PIN12_PORTREG + (CORE_PIN12_BIT >> 3)), &CORE_PIN12_CONFIG, (1<<(CORE_PIN12_BIT & 7))},
  97. {((volatile uint8_t *)&CORE_PIN13_PORTREG + (CORE_PIN13_BIT >> 3)), &CORE_PIN13_CONFIG, (1<<(CORE_PIN13_BIT & 7))},
  98. {((volatile uint8_t *)&CORE_PIN14_PORTREG + (CORE_PIN14_BIT >> 3)), &CORE_PIN14_CONFIG, (1<<(CORE_PIN14_BIT & 7))},
  99. {((volatile uint8_t *)&CORE_PIN15_PORTREG + (CORE_PIN15_BIT >> 3)), &CORE_PIN15_CONFIG, (1<<(CORE_PIN15_BIT & 7))},
  100. {((volatile uint8_t *)&CORE_PIN16_PORTREG + (CORE_PIN16_BIT >> 3)), &CORE_PIN16_CONFIG, (1<<(CORE_PIN16_BIT & 7))},
  101. {((volatile uint8_t *)&CORE_PIN17_PORTREG + (CORE_PIN17_BIT >> 3)), &CORE_PIN17_CONFIG, (1<<(CORE_PIN17_BIT & 7))},
  102. {((volatile uint8_t *)&CORE_PIN18_PORTREG + (CORE_PIN18_BIT >> 3)), &CORE_PIN18_CONFIG, (1<<(CORE_PIN18_BIT & 7))},
  103. {((volatile uint8_t *)&CORE_PIN19_PORTREG + (CORE_PIN19_BIT >> 3)), &CORE_PIN19_CONFIG, (1<<(CORE_PIN19_BIT & 7))},
  104. {((volatile uint8_t *)&CORE_PIN20_PORTREG + (CORE_PIN20_BIT >> 3)), &CORE_PIN20_CONFIG, (1<<(CORE_PIN20_BIT & 7))},
  105. {((volatile uint8_t *)&CORE_PIN21_PORTREG + (CORE_PIN21_BIT >> 3)), &CORE_PIN21_CONFIG, (1<<(CORE_PIN21_BIT & 7))},
  106. {((volatile uint8_t *)&CORE_PIN22_PORTREG + (CORE_PIN22_BIT >> 3)), &CORE_PIN22_CONFIG, (1<<(CORE_PIN22_BIT & 7))},
  107. {((volatile uint8_t *)&CORE_PIN23_PORTREG + (CORE_PIN23_BIT >> 3)), &CORE_PIN23_CONFIG, (1<<(CORE_PIN23_BIT & 7))},
  108. {((volatile uint8_t *)&CORE_PIN24_PORTREG + (CORE_PIN24_BIT >> 3)), &CORE_PIN24_CONFIG, (1<<(CORE_PIN24_BIT & 7))},
  109. {((volatile uint8_t *)&CORE_PIN25_PORTREG + (CORE_PIN25_BIT >> 3)), &CORE_PIN25_CONFIG, (1<<(CORE_PIN25_BIT & 7))},
  110. {((volatile uint8_t *)&CORE_PIN26_PORTREG + (CORE_PIN26_BIT >> 3)), &CORE_PIN26_CONFIG, (1<<(CORE_PIN26_BIT & 7))}
  111. };
  112. #endif
  113. typedef void (*voidFuncPtr)(void);
  114. volatile static voidFuncPtr intFunc[CORE_NUM_DIGITAL];
  115. #if defined(KINETISK)
  116. static void porta_interrupt(void);
  117. static void portb_interrupt(void);
  118. static void portc_interrupt(void);
  119. static void portd_interrupt(void);
  120. static void porte_interrupt(void);
  121. #elif defined(KINETISL)
  122. static void porta_interrupt(void);
  123. static void portcd_interrupt(void);
  124. #endif
  125. void attachInterruptVector(enum IRQ_NUMBER_t irq, void (*function)(void))
  126. {
  127. _VectorsRam[irq + 16] = function;
  128. }
  129. void attachInterrupt(uint8_t pin, void (*function)(void), int mode)
  130. {
  131. volatile uint32_t *config;
  132. uint32_t cfg, mask;
  133. if (pin >= CORE_NUM_DIGITAL) return;
  134. switch (mode) {
  135. case CHANGE: mask = 0x0B; break;
  136. case RISING: mask = 0x09; break;
  137. case FALLING: mask = 0x0A; break;
  138. case LOW: mask = 0x08; break;
  139. case HIGH: mask = 0x0C; break;
  140. default: return;
  141. }
  142. mask = (mask << 16) | 0x01000000;
  143. config = portConfigRegister(pin);
  144. #if defined(KINETISK)
  145. attachInterruptVector(IRQ_PORTA, porta_interrupt);
  146. attachInterruptVector(IRQ_PORTB, portb_interrupt);
  147. attachInterruptVector(IRQ_PORTC, portc_interrupt);
  148. attachInterruptVector(IRQ_PORTD, portd_interrupt);
  149. attachInterruptVector(IRQ_PORTE, porte_interrupt);
  150. #elif defined(KINETISL)
  151. attachInterruptVector(IRQ_PORTA, porta_interrupt);
  152. attachInterruptVector(IRQ_PORTCD, portcd_interrupt);
  153. #endif
  154. __disable_irq();
  155. cfg = *config;
  156. cfg &= ~0x000F0000; // disable any previous interrupt
  157. *config = cfg;
  158. intFunc[pin] = function; // set the function pointer
  159. cfg |= mask;
  160. *config = cfg; // enable the new interrupt
  161. __enable_irq();
  162. }
  163. void detachInterrupt(uint8_t pin)
  164. {
  165. volatile uint32_t *config;
  166. config = portConfigRegister(pin);
  167. __disable_irq();
  168. *config = ((*config & ~0x000F0000) | 0x01000000);
  169. intFunc[pin] = NULL;
  170. __enable_irq();
  171. }
  172. #if defined(__MK20DX128__) || defined(__MK20DX256__)
  173. static void porta_interrupt(void)
  174. {
  175. uint32_t isfr = PORTA_ISFR;
  176. PORTA_ISFR = isfr;
  177. if ((isfr & CORE_PIN3_BITMASK) && intFunc[3]) intFunc[3]();
  178. if ((isfr & CORE_PIN4_BITMASK) && intFunc[4]) intFunc[4]();
  179. if ((isfr & CORE_PIN24_BITMASK) && intFunc[24]) intFunc[24]();
  180. if ((isfr & CORE_PIN33_BITMASK) && intFunc[33]) intFunc[33]();
  181. }
  182. static void portb_interrupt(void)
  183. {
  184. uint32_t isfr = PORTB_ISFR;
  185. PORTB_ISFR = isfr;
  186. if ((isfr & CORE_PIN0_BITMASK) && intFunc[0]) intFunc[0]();
  187. if ((isfr & CORE_PIN1_BITMASK) && intFunc[1]) intFunc[1]();
  188. if ((isfr & CORE_PIN16_BITMASK) && intFunc[16]) intFunc[16]();
  189. if ((isfr & CORE_PIN17_BITMASK) && intFunc[17]) intFunc[17]();
  190. if ((isfr & CORE_PIN18_BITMASK) && intFunc[18]) intFunc[18]();
  191. if ((isfr & CORE_PIN19_BITMASK) && intFunc[19]) intFunc[19]();
  192. if ((isfr & CORE_PIN25_BITMASK) && intFunc[25]) intFunc[25]();
  193. if ((isfr & CORE_PIN32_BITMASK) && intFunc[32]) intFunc[32]();
  194. }
  195. static void portc_interrupt(void)
  196. {
  197. // TODO: these are inefficent. Use CLZ somehow....
  198. uint32_t isfr = PORTC_ISFR;
  199. PORTC_ISFR = isfr;
  200. if ((isfr & CORE_PIN9_BITMASK) && intFunc[9]) intFunc[9]();
  201. if ((isfr & CORE_PIN10_BITMASK) && intFunc[10]) intFunc[10]();
  202. if ((isfr & CORE_PIN11_BITMASK) && intFunc[11]) intFunc[11]();
  203. if ((isfr & CORE_PIN12_BITMASK) && intFunc[12]) intFunc[12]();
  204. if ((isfr & CORE_PIN13_BITMASK) && intFunc[13]) intFunc[13]();
  205. if ((isfr & CORE_PIN15_BITMASK) && intFunc[15]) intFunc[15]();
  206. if ((isfr & CORE_PIN22_BITMASK) && intFunc[22]) intFunc[22]();
  207. if ((isfr & CORE_PIN23_BITMASK) && intFunc[23]) intFunc[23]();
  208. if ((isfr & CORE_PIN27_BITMASK) && intFunc[27]) intFunc[27]();
  209. if ((isfr & CORE_PIN28_BITMASK) && intFunc[28]) intFunc[28]();
  210. if ((isfr & CORE_PIN29_BITMASK) && intFunc[29]) intFunc[29]();
  211. if ((isfr & CORE_PIN30_BITMASK) && intFunc[30]) intFunc[30]();
  212. }
  213. static void portd_interrupt(void)
  214. {
  215. uint32_t isfr = PORTD_ISFR;
  216. PORTD_ISFR = isfr;
  217. if ((isfr & CORE_PIN2_BITMASK) && intFunc[2]) intFunc[2]();
  218. if ((isfr & CORE_PIN5_BITMASK) && intFunc[5]) intFunc[5]();
  219. if ((isfr & CORE_PIN6_BITMASK) && intFunc[6]) intFunc[6]();
  220. if ((isfr & CORE_PIN7_BITMASK) && intFunc[7]) intFunc[7]();
  221. if ((isfr & CORE_PIN8_BITMASK) && intFunc[8]) intFunc[8]();
  222. if ((isfr & CORE_PIN14_BITMASK) && intFunc[14]) intFunc[14]();
  223. if ((isfr & CORE_PIN20_BITMASK) && intFunc[20]) intFunc[20]();
  224. if ((isfr & CORE_PIN21_BITMASK) && intFunc[21]) intFunc[21]();
  225. }
  226. static void porte_interrupt(void)
  227. {
  228. uint32_t isfr = PORTE_ISFR;
  229. PORTE_ISFR = isfr;
  230. if ((isfr & CORE_PIN26_BITMASK) && intFunc[26]) intFunc[26]();
  231. if ((isfr & CORE_PIN31_BITMASK) && intFunc[31]) intFunc[31]();
  232. }
  233. #elif defined(__MKL26Z64__)
  234. static void porta_interrupt(void)
  235. {
  236. uint32_t isfr = PORTA_ISFR;
  237. PORTA_ISFR = isfr;
  238. if ((isfr & CORE_PIN3_BITMASK) && intFunc[3]) intFunc[3]();
  239. if ((isfr & CORE_PIN4_BITMASK) && intFunc[4]) intFunc[4]();
  240. }
  241. static void portcd_interrupt(void)
  242. {
  243. uint32_t isfr = PORTC_ISFR;
  244. PORTC_ISFR = isfr;
  245. if ((isfr & CORE_PIN9_BITMASK) && intFunc[9]) intFunc[9]();
  246. if ((isfr & CORE_PIN10_BITMASK) && intFunc[10]) intFunc[10]();
  247. if ((isfr & CORE_PIN11_BITMASK) && intFunc[11]) intFunc[11]();
  248. if ((isfr & CORE_PIN12_BITMASK) && intFunc[12]) intFunc[12]();
  249. if ((isfr & CORE_PIN13_BITMASK) && intFunc[13]) intFunc[13]();
  250. if ((isfr & CORE_PIN15_BITMASK) && intFunc[15]) intFunc[15]();
  251. if ((isfr & CORE_PIN22_BITMASK) && intFunc[22]) intFunc[22]();
  252. if ((isfr & CORE_PIN23_BITMASK) && intFunc[23]) intFunc[23]();
  253. isfr = PORTD_ISFR;
  254. PORTD_ISFR = isfr;
  255. if ((isfr & CORE_PIN2_BITMASK) && intFunc[2]) intFunc[2]();
  256. if ((isfr & CORE_PIN5_BITMASK) && intFunc[5]) intFunc[5]();
  257. if ((isfr & CORE_PIN6_BITMASK) && intFunc[6]) intFunc[6]();
  258. if ((isfr & CORE_PIN7_BITMASK) && intFunc[7]) intFunc[7]();
  259. if ((isfr & CORE_PIN8_BITMASK) && intFunc[8]) intFunc[8]();
  260. if ((isfr & CORE_PIN14_BITMASK) && intFunc[14]) intFunc[14]();
  261. if ((isfr & CORE_PIN20_BITMASK) && intFunc[20]) intFunc[20]();
  262. if ((isfr & CORE_PIN21_BITMASK) && intFunc[21]) intFunc[21]();
  263. }
  264. #elif defined(__MK66FX1M0__)
  265. static void porta_interrupt(void)
  266. {
  267. uint32_t isfr = PORTA_ISFR;
  268. PORTA_ISFR = isfr;
  269. if ((isfr & CORE_PIN3_BITMASK) && intFunc[3]) intFunc[3]();
  270. if ((isfr & CORE_PIN4_BITMASK) && intFunc[4]) intFunc[4]();
  271. if ((isfr & CORE_PIN25_BITMASK) && intFunc[25]) intFunc[25]();
  272. if ((isfr & CORE_PIN26_BITMASK) && intFunc[26]) intFunc[26]();
  273. if ((isfr & CORE_PIN27_BITMASK) && intFunc[27]) intFunc[27]();
  274. if ((isfr & CORE_PIN28_BITMASK) && intFunc[28]) intFunc[28]();
  275. if ((isfr & CORE_PIN39_BITMASK) && intFunc[39]) intFunc[39]();
  276. }
  277. static void portb_interrupt(void)
  278. {
  279. uint32_t isfr = PORTB_ISFR;
  280. PORTB_ISFR = isfr;
  281. if ((isfr & CORE_PIN0_BITMASK) && intFunc[0]) intFunc[0]();
  282. if ((isfr & CORE_PIN1_BITMASK) && intFunc[1]) intFunc[1]();
  283. if ((isfr & CORE_PIN16_BITMASK) && intFunc[16]) intFunc[16]();
  284. if ((isfr & CORE_PIN17_BITMASK) && intFunc[17]) intFunc[17]();
  285. if ((isfr & CORE_PIN18_BITMASK) && intFunc[18]) intFunc[18]();
  286. if ((isfr & CORE_PIN19_BITMASK) && intFunc[19]) intFunc[19]();
  287. if ((isfr & CORE_PIN29_BITMASK) && intFunc[29]) intFunc[29]();
  288. if ((isfr & CORE_PIN30_BITMASK) && intFunc[30]) intFunc[30]();
  289. if ((isfr & CORE_PIN31_BITMASK) && intFunc[31]) intFunc[31]();
  290. if ((isfr & CORE_PIN32_BITMASK) && intFunc[32]) intFunc[32]();
  291. }
  292. static void portc_interrupt(void)
  293. {
  294. // TODO: these are inefficent. Use CLZ somehow....
  295. uint32_t isfr = PORTC_ISFR;
  296. PORTC_ISFR = isfr;
  297. if ((isfr & CORE_PIN9_BITMASK) && intFunc[9]) intFunc[9]();
  298. if ((isfr & CORE_PIN10_BITMASK) && intFunc[10]) intFunc[10]();
  299. if ((isfr & CORE_PIN11_BITMASK) && intFunc[11]) intFunc[11]();
  300. if ((isfr & CORE_PIN12_BITMASK) && intFunc[12]) intFunc[12]();
  301. if ((isfr & CORE_PIN13_BITMASK) && intFunc[13]) intFunc[13]();
  302. if ((isfr & CORE_PIN15_BITMASK) && intFunc[15]) intFunc[15]();
  303. if ((isfr & CORE_PIN22_BITMASK) && intFunc[22]) intFunc[22]();
  304. if ((isfr & CORE_PIN23_BITMASK) && intFunc[23]) intFunc[23]();
  305. if ((isfr & CORE_PIN35_BITMASK) && intFunc[35]) intFunc[35]();
  306. if ((isfr & CORE_PIN36_BITMASK) && intFunc[36]) intFunc[36]();
  307. if ((isfr & CORE_PIN37_BITMASK) && intFunc[37]) intFunc[37]();
  308. if ((isfr & CORE_PIN38_BITMASK) && intFunc[38]) intFunc[38]();
  309. }
  310. static void portd_interrupt(void)
  311. {
  312. uint32_t isfr = PORTD_ISFR;
  313. PORTD_ISFR = isfr;
  314. if ((isfr & CORE_PIN2_BITMASK) && intFunc[2]) intFunc[2]();
  315. if ((isfr & CORE_PIN5_BITMASK) && intFunc[5]) intFunc[5]();
  316. if ((isfr & CORE_PIN6_BITMASK) && intFunc[6]) intFunc[6]();
  317. if ((isfr & CORE_PIN7_BITMASK) && intFunc[7]) intFunc[7]();
  318. if ((isfr & CORE_PIN8_BITMASK) && intFunc[8]) intFunc[8]();
  319. if ((isfr & CORE_PIN14_BITMASK) && intFunc[14]) intFunc[14]();
  320. if ((isfr & CORE_PIN20_BITMASK) && intFunc[20]) intFunc[20]();
  321. if ((isfr & CORE_PIN21_BITMASK) && intFunc[21]) intFunc[21]();
  322. }
  323. static void porte_interrupt(void)
  324. {
  325. uint32_t isfr = PORTE_ISFR;
  326. PORTE_ISFR = isfr;
  327. if ((isfr & CORE_PIN24_BITMASK) && intFunc[24]) intFunc[24]();
  328. if ((isfr & CORE_PIN33_BITMASK) && intFunc[33]) intFunc[33]();
  329. if ((isfr & CORE_PIN34_BITMASK) && intFunc[34]) intFunc[34]();
  330. }
  331. #endif
  332. #if defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MK66FX1M0__)
  333. unsigned long rtc_get(void)
  334. {
  335. return RTC_TSR;
  336. }
  337. void rtc_set(unsigned long t)
  338. {
  339. RTC_SR = 0;
  340. RTC_TPR = 0;
  341. RTC_TSR = t;
  342. RTC_SR = RTC_SR_TCE;
  343. }
  344. // adjust is the amount of crystal error to compensate, 1 = 0.1192 ppm
  345. // For example, adjust = -100 is slows the clock by 11.92 ppm
  346. //
  347. void rtc_compensate(int adjust)
  348. {
  349. uint32_t comp, interval, tcr;
  350. // This simple approach tries to maximize the interval.
  351. // Perhaps minimizing TCR would be better, so the
  352. // compensation is distributed more evenly across
  353. // many seconds, rather than saving it all up and then
  354. // altering one second up to +/- 0.38%
  355. if (adjust >= 0) {
  356. comp = adjust;
  357. interval = 256;
  358. while (1) {
  359. tcr = comp * interval;
  360. if (tcr < 128*256) break;
  361. if (--interval == 1) break;
  362. }
  363. tcr = tcr >> 8;
  364. } else {
  365. comp = -adjust;
  366. interval = 256;
  367. while (1) {
  368. tcr = comp * interval;
  369. if (tcr < 129*256) break;
  370. if (--interval == 1) break;
  371. }
  372. tcr = tcr >> 8;
  373. tcr = 256 - tcr;
  374. }
  375. RTC_TCR = ((interval - 1) << 8) | tcr;
  376. }
  377. #else
  378. unsigned long rtc_get(void) { return 0; }
  379. void rtc_set(unsigned long t) { }
  380. void rtc_compensate(int adjust) { }
  381. #endif
  382. #if 0
  383. // TODO: build system should define this
  384. // so RTC is automatically initialized to approx correct time
  385. // at least when the program begins running right after upload
  386. #ifndef TIME_T
  387. #define TIME_T 1350160272
  388. #endif
  389. void init_rtc(void)
  390. {
  391. serial_print("init_rtc\n");
  392. //SIM_SCGC6 |= SIM_SCGC6_RTC;
  393. // enable the RTC crystal oscillator, for approx 12pf crystal
  394. if (!(RTC_CR & RTC_CR_OSCE)) {
  395. serial_print("start RTC oscillator\n");
  396. RTC_SR = 0;
  397. RTC_CR = RTC_CR_SC16P | RTC_CR_SC4P | RTC_CR_OSCE;
  398. }
  399. // should wait for crystal to stabilize.....
  400. serial_print("SR=");
  401. serial_phex32(RTC_SR);
  402. serial_print("\n");
  403. serial_print("CR=");
  404. serial_phex32(RTC_CR);
  405. serial_print("\n");
  406. serial_print("TSR=");
  407. serial_phex32(RTC_TSR);
  408. serial_print("\n");
  409. serial_print("TCR=");
  410. serial_phex32(RTC_TCR);
  411. serial_print("\n");
  412. if (RTC_SR & RTC_SR_TIF) {
  413. // enable the RTC
  414. RTC_SR = 0;
  415. RTC_TPR = 0;
  416. RTC_TSR = TIME_T;
  417. RTC_SR = RTC_SR_TCE;
  418. }
  419. }
  420. #endif
  421. extern void usb_init(void);
  422. // create a default PWM at the same 488.28 Hz as Arduino Uno
  423. #if defined(KINETISK)
  424. #define F_TIMER F_BUS
  425. #elif defined(KINETISL)
  426. #if F_CPU > 16000000
  427. #define F_TIMER (F_PLL/2)
  428. #else
  429. #define F_TIMER (F_PLL)
  430. #endif//Low Power
  431. #endif
  432. #if F_TIMER == 60000000
  433. #define DEFAULT_FTM_MOD (61440 - 1)
  434. #define DEFAULT_FTM_PRESCALE 1
  435. #elif F_TIMER == 56000000
  436. #define DEFAULT_FTM_MOD (57344 - 1)
  437. #define DEFAULT_FTM_PRESCALE 1
  438. #elif F_TIMER == 48000000
  439. #define DEFAULT_FTM_MOD (49152 - 1)
  440. #define DEFAULT_FTM_PRESCALE 1
  441. #elif F_TIMER == 40000000
  442. #define DEFAULT_FTM_MOD (40960 - 1)
  443. #define DEFAULT_FTM_PRESCALE 1
  444. #elif F_TIMER == 36000000
  445. #define DEFAULT_FTM_MOD (36864 - 1)
  446. #define DEFAULT_FTM_PRESCALE 1
  447. #elif F_TIMER == 24000000
  448. #define DEFAULT_FTM_MOD (49152 - 1)
  449. #define DEFAULT_FTM_PRESCALE 0
  450. #elif F_TIMER == 16000000
  451. #define DEFAULT_FTM_MOD (32768 - 1)
  452. #define DEFAULT_FTM_PRESCALE 0
  453. #elif F_TIMER == 8000000
  454. #define DEFAULT_FTM_MOD (16384 - 1)
  455. #define DEFAULT_FTM_PRESCALE 0
  456. #elif F_TIMER == 4000000
  457. #define DEFAULT_FTM_MOD (8192 - 1)
  458. #define DEFAULT_FTM_PRESCALE 0
  459. #elif F_TIMER == 2000000
  460. #define DEFAULT_FTM_MOD (4096 - 1)
  461. #define DEFAULT_FTM_PRESCALE 0
  462. #endif
  463. //void init_pins(void)
  464. void _init_Teensyduino_internal_(void)
  465. {
  466. #if defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MK66FX1M0__)
  467. NVIC_ENABLE_IRQ(IRQ_PORTA);
  468. NVIC_ENABLE_IRQ(IRQ_PORTB);
  469. NVIC_ENABLE_IRQ(IRQ_PORTC);
  470. NVIC_ENABLE_IRQ(IRQ_PORTD);
  471. NVIC_ENABLE_IRQ(IRQ_PORTE);
  472. #elif defined(__MKL26Z64__)
  473. NVIC_ENABLE_IRQ(IRQ_PORTA);
  474. NVIC_ENABLE_IRQ(IRQ_PORTCD);
  475. #endif
  476. //SIM_SCGC6 |= SIM_SCGC6_FTM0; // TODO: use bitband for atomic read-mod-write
  477. //SIM_SCGC6 |= SIM_SCGC6_FTM1;
  478. FTM0_CNT = 0;
  479. FTM0_MOD = DEFAULT_FTM_MOD;
  480. FTM0_C0SC = 0x28; // MSnB:MSnA = 10, ELSnB:ELSnA = 10
  481. FTM0_C1SC = 0x28;
  482. FTM0_C2SC = 0x28;
  483. FTM0_C3SC = 0x28;
  484. FTM0_C4SC = 0x28;
  485. FTM0_C5SC = 0x28;
  486. #if defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MK66FX1M0__)
  487. FTM0_C6SC = 0x28;
  488. FTM0_C7SC = 0x28;
  489. #endif
  490. #if defined(__MK66FX1M0__)
  491. FTM3_C0SC = 0x28;
  492. FTM3_C1SC = 0x28;
  493. FTM3_C2SC = 0x28;
  494. FTM3_C3SC = 0x28;
  495. FTM3_C4SC = 0x28;
  496. FTM3_C5SC = 0x28;
  497. FTM3_C6SC = 0x28;
  498. FTM3_C7SC = 0x28;
  499. #endif
  500. FTM0_SC = FTM_SC_CLKS(1) | FTM_SC_PS(DEFAULT_FTM_PRESCALE);
  501. FTM1_CNT = 0;
  502. FTM1_MOD = DEFAULT_FTM_MOD;
  503. FTM1_C0SC = 0x28;
  504. FTM1_C1SC = 0x28;
  505. FTM1_SC = FTM_SC_CLKS(1) | FTM_SC_PS(DEFAULT_FTM_PRESCALE);
  506. #if defined(__MK20DX256__) || defined(__MK66FX1M0__) || defined(__MKL26Z64__)
  507. FTM2_CNT = 0;
  508. FTM2_MOD = DEFAULT_FTM_MOD;
  509. FTM2_C0SC = 0x28;
  510. FTM2_C1SC = 0x28;
  511. FTM2_SC = FTM_SC_CLKS(1) | FTM_SC_PS(DEFAULT_FTM_PRESCALE);
  512. #endif
  513. #if defined(__MK66FX1M0__)
  514. FTM3_CNT = 0;
  515. FTM3_MOD = DEFAULT_FTM_MOD;
  516. FTM3_C0SC = 0x28;
  517. FTM3_C1SC = 0x28;
  518. FTM3_SC = FTM_SC_CLKS(1) | FTM_SC_PS(DEFAULT_FTM_PRESCALE);
  519. #endif
  520. analog_init();
  521. //delay(100); // TODO: this is not necessary, right?
  522. delay(4);
  523. usb_init();
  524. }
  525. #if defined(__MK20DX128__)
  526. #define FTM0_CH0_PIN 22
  527. #define FTM0_CH1_PIN 23
  528. #define FTM0_CH2_PIN 9
  529. #define FTM0_CH3_PIN 10
  530. #define FTM0_CH4_PIN 6
  531. #define FTM0_CH5_PIN 20
  532. #define FTM0_CH6_PIN 21
  533. #define FTM0_CH7_PIN 5
  534. #define FTM1_CH0_PIN 3
  535. #define FTM1_CH1_PIN 4
  536. #elif defined(__MK20DX256__)
  537. #define FTM0_CH0_PIN 22
  538. #define FTM0_CH1_PIN 23
  539. #define FTM0_CH2_PIN 9
  540. #define FTM0_CH3_PIN 10
  541. #define FTM0_CH4_PIN 6
  542. #define FTM0_CH5_PIN 20
  543. #define FTM0_CH6_PIN 21
  544. #define FTM0_CH7_PIN 5
  545. #define FTM1_CH0_PIN 3
  546. #define FTM1_CH1_PIN 4
  547. #define FTM2_CH0_PIN 32
  548. #define FTM2_CH1_PIN 25
  549. #elif defined(__MKL26Z64__)
  550. #define FTM0_CH0_PIN 22
  551. #define FTM0_CH1_PIN 23
  552. #define FTM0_CH2_PIN 9
  553. #define FTM0_CH3_PIN 10
  554. #define FTM0_CH4_PIN 6
  555. #define FTM0_CH5_PIN 20
  556. #define FTM1_CH0_PIN 16
  557. #define FTM1_CH1_PIN 17
  558. #define FTM2_CH0_PIN 3
  559. #define FTM2_CH1_PIN 4
  560. #elif defined(__MK66FX1M0__)
  561. #define FTM0_CH0_PIN 22
  562. #define FTM0_CH1_PIN 23
  563. #define FTM0_CH2_PIN 9
  564. #define FTM0_CH3_PIN 10
  565. #define FTM0_CH4_PIN 6
  566. #define FTM0_CH5_PIN 20
  567. #define FTM0_CH6_PIN 21
  568. #define FTM0_CH7_PIN 5
  569. #define FTM1_CH0_PIN 3
  570. #define FTM1_CH1_PIN 4
  571. #define FTM2_CH0_PIN 29
  572. #define FTM2_CH1_PIN 30
  573. #define FTM3_CH0_PIN 2
  574. #define FTM3_CH1_PIN 14
  575. #define FTM3_CH2_PIN 7
  576. #define FTM3_CH3_PIN 8
  577. #define FTM3_CH4_PIN 35
  578. #define FTM3_CH5_PIN 36
  579. #define FTM3_CH6_PIN 37
  580. #define FTM3_CH7_PIN 38
  581. #endif
  582. #define FTM_PINCFG(pin) FTM_PINCFG2(pin)
  583. #define FTM_PINCFG2(pin) CORE_PIN ## pin ## _CONFIG
  584. static uint8_t analog_write_res = 8;
  585. // SOPT4 is SIM select clocks?
  586. // FTM is clocked by the bus clock, either 24 or 48 MHz
  587. // input capture can be FTM1_CH0, CMP0 or CMP1 or USB start of frame
  588. // 24 MHz with reload 49152 to match Arduino's speed = 488.28125 Hz
  589. void analogWrite(uint8_t pin, int val)
  590. {
  591. uint32_t cval, max;
  592. #if defined(__MK20DX256__)
  593. if (pin == A14) {
  594. uint8_t res = analog_write_res;
  595. if (res < 12) {
  596. val <<= 12 - res;
  597. } else if (res > 12) {
  598. val >>= res - 12;
  599. }
  600. analogWriteDAC0(val);
  601. return;
  602. }
  603. #elif defined(__MKL26Z64__)
  604. if (pin == A12) {
  605. uint8_t res = analog_write_res;
  606. if (res < 12) {
  607. val <<= 12 - res;
  608. } else if (res > 12) {
  609. val >>= res - 12;
  610. }
  611. analogWriteDAC0(val);
  612. return;
  613. }
  614. #elif defined(__MK66FX1M0__)
  615. if (pin == A21 || pin == A22) {
  616. uint8_t res = analog_write_res;
  617. if (res < 12) {
  618. val <<= 12 - res;
  619. } else if (res > 12) {
  620. val >>= res - 12;
  621. }
  622. if (pin == A21) analogWriteDAC0(val);
  623. else analogWriteDAC1(val);
  624. return;
  625. }
  626. #endif
  627. max = 1 << analog_write_res;
  628. if (val <= 0) {
  629. digitalWrite(pin, LOW);
  630. pinMode(pin, OUTPUT); // TODO: implement OUTPUT_LOW
  631. return;
  632. } else if (val >= max) {
  633. digitalWrite(pin, HIGH);
  634. pinMode(pin, OUTPUT); // TODO: implement OUTPUT_HIGH
  635. return;
  636. }
  637. //serial_print("analogWrite\n");
  638. //serial_print("val = ");
  639. //serial_phex32(val);
  640. //serial_print("\n");
  641. //serial_print("analog_write_res = ");
  642. //serial_phex(analog_write_res);
  643. //serial_print("\n");
  644. if (pin == FTM1_CH0_PIN || pin == FTM1_CH1_PIN) {
  645. cval = ((uint32_t)val * (uint32_t)(FTM1_MOD + 1)) >> analog_write_res;
  646. #if defined(FTM2_CH0_PIN)
  647. } else if (pin == FTM2_CH0_PIN || pin == FTM2_CH1_PIN) {
  648. cval = ((uint32_t)val * (uint32_t)(FTM2_MOD + 1)) >> analog_write_res;
  649. #endif
  650. } else {
  651. cval = ((uint32_t)val * (uint32_t)(FTM0_MOD + 1)) >> analog_write_res;
  652. }
  653. //serial_print("cval = ");
  654. //serial_phex32(cval);
  655. //serial_print("\n");
  656. switch (pin) {
  657. #ifdef FTM0_CH0_PIN
  658. case FTM0_CH0_PIN: // PTC1, FTM0_CH0
  659. FTM0_C0V = cval;
  660. FTM_PINCFG(FTM0_CH0_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  661. break;
  662. #endif
  663. #ifdef FTM0_CH1_PIN
  664. case FTM0_CH1_PIN: // PTC2, FTM0_CH1
  665. FTM0_C1V = cval;
  666. FTM_PINCFG(FTM0_CH1_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  667. break;
  668. #endif
  669. #ifdef FTM0_CH2_PIN
  670. case FTM0_CH2_PIN: // PTC3, FTM0_CH2
  671. FTM0_C2V = cval;
  672. FTM_PINCFG(FTM0_CH2_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  673. break;
  674. #endif
  675. #ifdef FTM0_CH3_PIN
  676. case FTM0_CH3_PIN: // PTC4, FTM0_CH3
  677. FTM0_C3V = cval;
  678. FTM_PINCFG(FTM0_CH3_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  679. break;
  680. #endif
  681. #ifdef FTM0_CH4_PIN
  682. case FTM0_CH4_PIN: // PTD4, FTM0_CH4
  683. FTM0_C4V = cval;
  684. FTM_PINCFG(FTM0_CH4_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  685. break;
  686. #endif
  687. #ifdef FTM0_CH5_PIN
  688. case FTM0_CH5_PIN: // PTD5, FTM0_CH5
  689. FTM0_C5V = cval;
  690. FTM_PINCFG(FTM0_CH5_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  691. break;
  692. #endif
  693. #ifdef FTM0_CH6_PIN
  694. case FTM0_CH6_PIN: // PTD6, FTM0_CH6
  695. FTM0_C6V = cval;
  696. FTM_PINCFG(FTM0_CH6_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  697. break;
  698. #endif
  699. #ifdef FTM0_CH7_PIN
  700. case FTM0_CH7_PIN: // PTD7, FTM0_CH7
  701. FTM0_C7V = cval;
  702. FTM_PINCFG(FTM0_CH7_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  703. break;
  704. #endif
  705. #ifdef FTM1_CH0_PIN
  706. case FTM1_CH0_PIN: // PTA12, FTM1_CH0
  707. FTM1_C0V = cval;
  708. FTM_PINCFG(FTM1_CH0_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  709. break;
  710. #endif
  711. #ifdef FTM1_CH1_PIN
  712. case FTM1_CH1_PIN: // PTA13, FTM1_CH1
  713. FTM1_C1V = cval;
  714. FTM_PINCFG(FTM1_CH1_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  715. break;
  716. #endif
  717. #ifdef FTM2_CH0_PIN
  718. case FTM2_CH0_PIN: // PTB18, FTM2_CH0
  719. FTM2_C0V = cval;
  720. FTM_PINCFG(FTM2_CH0_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  721. break;
  722. #endif
  723. #ifdef FTM2_CH1_PIN
  724. case FTM2_CH1_PIN: // PTB19, FTM1_CH1
  725. FTM2_C1V = cval;
  726. FTM_PINCFG(FTM2_CH1_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  727. break;
  728. #endif
  729. #ifdef FTM3_CH0_PIN
  730. case FTM3_CH0_PIN:
  731. FTM3_C0V = cval;
  732. FTM_PINCFG(FTM3_CH0_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  733. break;
  734. #endif
  735. #ifdef FTM3_CH1_PIN
  736. case FTM3_CH1_PIN:
  737. FTM3_C1V = cval;
  738. FTM_PINCFG(FTM3_CH1_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  739. break;
  740. #endif
  741. #ifdef FTM3_CH2_PIN
  742. case FTM3_CH2_PIN:
  743. FTM3_C2V = cval;
  744. FTM_PINCFG(FTM3_CH2_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  745. break;
  746. #endif
  747. #ifdef FTM3_CH3_PIN
  748. case FTM3_CH3_PIN:
  749. FTM3_C3V = cval;
  750. FTM_PINCFG(FTM3_CH3_PIN) = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  751. break;
  752. #endif
  753. #ifdef FTM3_CH4_PIN
  754. case FTM3_CH4_PIN:
  755. FTM3_C4V = cval;
  756. FTM_PINCFG(FTM3_CH4_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  757. break;
  758. #endif
  759. #ifdef FTM3_CH5_PIN
  760. case FTM3_CH5_PIN:
  761. FTM3_C5V = cval;
  762. FTM_PINCFG(FTM3_CH5_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  763. break;
  764. #endif
  765. #ifdef FTM3_CH6_PIN
  766. case FTM3_CH6_PIN:
  767. FTM3_C6V = cval;
  768. FTM_PINCFG(FTM3_CH6_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  769. break;
  770. #endif
  771. #ifdef FTM3_CH7_PIN
  772. case FTM3_CH7_PIN:
  773. FTM3_C7V = cval;
  774. FTM_PINCFG(FTM3_CH7_PIN) = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  775. break;
  776. #endif
  777. default:
  778. digitalWrite(pin, (val > 127) ? HIGH : LOW);
  779. pinMode(pin, OUTPUT);
  780. }
  781. }
  782. void analogWriteRes(uint32_t bits)
  783. {
  784. if (bits < 1) {
  785. bits = 1;
  786. } else if (bits > 16) {
  787. bits = 16;
  788. }
  789. analog_write_res = bits;
  790. }
  791. void analogWriteFrequency(uint8_t pin, float frequency)
  792. {
  793. uint32_t prescale, mod, ftmClock, ftmClockSource;
  794. float minfreq;
  795. //serial_print("analogWriteFrequency: pin = ");
  796. //serial_phex(pin);
  797. //serial_print(", freq = ");
  798. //serial_phex32((uint32_t)frequency);
  799. //serial_print("\n");
  800. if (frequency < (float)(F_TIMER >> 7) / 65536.0f) { //If frequency is too low for working with F_TIMER:
  801. ftmClockSource = 2; //Use alternative 31250Hz clock source
  802. ftmClock = 31250; //Set variable for the actual timer clock frequency
  803. } else { //Else do as before:
  804. ftmClockSource = 1; //Use default F_Timer clock source
  805. ftmClock = F_TIMER; //Set variable for the actual timer clock frequency
  806. }
  807. for (prescale = 0; prescale < 7; prescale++) {
  808. minfreq = (float)(ftmClock >> prescale) / 65536.0f; //Use ftmClock instead of F_TIMER
  809. if (frequency >= minfreq) break;
  810. }
  811. //serial_print("F_TIMER/ftm_Clock = ");
  812. //serial_phex32(ftmClock >> prescale);
  813. //serial_print("\n");
  814. //serial_print("prescale = ");
  815. //serial_phex(prescale);
  816. //serial_print("\n");
  817. mod = (float)(ftmClock >> prescale) / frequency - 0.5f; //Use ftmClock instead of F_TIMER
  818. if (mod > 65535) mod = 65535;
  819. //serial_print("mod = ");
  820. //serial_phex32(mod);
  821. //serial_print("\n");
  822. if (pin == FTM1_CH0_PIN || pin == FTM1_CH1_PIN) {
  823. FTM1_SC = 0;
  824. FTM1_CNT = 0;
  825. FTM1_MOD = mod;
  826. FTM1_SC = FTM_SC_CLKS(ftmClockSource) | FTM_SC_PS(prescale); //Use ftmClockSource instead of 1
  827. } else if (pin == FTM0_CH0_PIN || pin == FTM0_CH1_PIN
  828. || pin == FTM0_CH2_PIN || pin == FTM0_CH3_PIN
  829. || pin == FTM0_CH4_PIN || pin == FTM0_CH5_PIN
  830. #ifdef FTM0_CH6_PIN
  831. || pin == FTM0_CH6_PIN || pin == FTM0_CH7_PIN
  832. #endif
  833. ) {
  834. FTM0_SC = 0;
  835. FTM0_CNT = 0;
  836. FTM0_MOD = mod;
  837. FTM0_SC = FTM_SC_CLKS(ftmClockSource) | FTM_SC_PS(prescale); //Use ftmClockSource instead of 1
  838. }
  839. #ifdef FTM2_CH0_PIN
  840. else if (pin == FTM2_CH0_PIN || pin == FTM2_CH1_PIN) {
  841. FTM2_SC = 0;
  842. FTM2_CNT = 0;
  843. FTM2_MOD = mod;
  844. FTM2_SC = FTM_SC_CLKS(ftmClockSource) | FTM_SC_PS(prescale); //Use ftmClockSource instead of 1
  845. }
  846. #endif
  847. #ifdef FTM3_CH0_PIN
  848. else if (pin == FTM3_CH0_PIN || pin == FTM3_CH1_PIN
  849. || pin == FTM3_CH2_PIN || pin == FTM3_CH3_PIN
  850. || pin == FTM3_CH4_PIN || pin == FTM3_CH5_PIN
  851. || pin == FTM3_CH6_PIN || pin == FTM3_CH7_PIN) {
  852. FTM3_SC = 0;
  853. FTM3_CNT = 0;
  854. FTM3_MOD = mod;
  855. FTM3_SC = FTM_SC_CLKS(ftmClockSource) | FTM_SC_PS(prescale); //Use the new ftmClockSource instead of 1
  856. }
  857. #endif
  858. }
  859. // TODO: startup code needs to initialize all pins to GPIO mode, input by default
  860. void digitalWrite(uint8_t pin, uint8_t val)
  861. {
  862. if (pin >= CORE_NUM_DIGITAL) return;
  863. #ifdef KINETISK
  864. if (*portModeRegister(pin)) {
  865. if (val) {
  866. *portSetRegister(pin) = 1;
  867. } else {
  868. *portClearRegister(pin) = 1;
  869. }
  870. #else
  871. if (*portModeRegister(pin) & digitalPinToBitMask(pin)) {
  872. if (val) {
  873. *portSetRegister(pin) = digitalPinToBitMask(pin);
  874. } else {
  875. *portClearRegister(pin) = digitalPinToBitMask(pin);
  876. }
  877. #endif
  878. } else {
  879. volatile uint32_t *config = portConfigRegister(pin);
  880. if (val) {
  881. // TODO use bitband for atomic read-mod-write
  882. *config |= (PORT_PCR_PE | PORT_PCR_PS);
  883. //*config = PORT_PCR_MUX(1) | PORT_PCR_PE | PORT_PCR_PS;
  884. } else {
  885. // TODO use bitband for atomic read-mod-write
  886. *config &= ~(PORT_PCR_PE);
  887. //*config = PORT_PCR_MUX(1);
  888. }
  889. }
  890. }
  891. uint8_t digitalRead(uint8_t pin)
  892. {
  893. if (pin >= CORE_NUM_DIGITAL) return 0;
  894. #ifdef KINETISK
  895. return *portInputRegister(pin);
  896. #else
  897. return (*portInputRegister(pin) & digitalPinToBitMask(pin)) ? 1 : 0;
  898. #endif
  899. }
  900. void pinMode(uint8_t pin, uint8_t mode)
  901. {
  902. volatile uint32_t *config;
  903. if (pin >= CORE_NUM_DIGITAL) return;
  904. config = portConfigRegister(pin);
  905. if (mode == OUTPUT) {
  906. #ifdef KINETISK
  907. *portModeRegister(pin) = 1;
  908. #else
  909. *portModeRegister(pin) |= digitalPinToBitMask(pin); // TODO: atomic
  910. #endif
  911. *config = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1);
  912. } else {
  913. #ifdef KINETISK
  914. *portModeRegister(pin) = 0;
  915. #else
  916. *portModeRegister(pin) &= ~digitalPinToBitMask(pin);
  917. #endif
  918. if (mode == INPUT) {
  919. *config = PORT_PCR_MUX(1);
  920. } else {
  921. *config = PORT_PCR_MUX(1) | PORT_PCR_PE | PORT_PCR_PS; // pullup
  922. }
  923. }
  924. }
  925. void _shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t value)
  926. {
  927. if (bitOrder == LSBFIRST) {
  928. shiftOut_lsbFirst(dataPin, clockPin, value);
  929. } else {
  930. shiftOut_msbFirst(dataPin, clockPin, value);
  931. }
  932. }
  933. void shiftOut_lsbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value)
  934. {
  935. uint8_t mask;
  936. for (mask=0x01; mask; mask <<= 1) {
  937. digitalWrite(dataPin, value & mask);
  938. digitalWrite(clockPin, HIGH);
  939. digitalWrite(clockPin, LOW);
  940. }
  941. }
  942. void shiftOut_msbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value)
  943. {
  944. uint8_t mask;
  945. for (mask=0x80; mask; mask >>= 1) {
  946. digitalWrite(dataPin, value & mask);
  947. digitalWrite(clockPin, HIGH);
  948. digitalWrite(clockPin, LOW);
  949. }
  950. }
  951. uint8_t _shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder)
  952. {
  953. if (bitOrder == LSBFIRST) {
  954. return shiftIn_lsbFirst(dataPin, clockPin);
  955. } else {
  956. return shiftIn_msbFirst(dataPin, clockPin);
  957. }
  958. }
  959. uint8_t shiftIn_lsbFirst(uint8_t dataPin, uint8_t clockPin)
  960. {
  961. uint8_t mask, value=0;
  962. for (mask=0x01; mask; mask <<= 1) {
  963. digitalWrite(clockPin, HIGH);
  964. if (digitalRead(dataPin)) value |= mask;
  965. digitalWrite(clockPin, LOW);
  966. }
  967. return value;
  968. }
  969. uint8_t shiftIn_msbFirst(uint8_t dataPin, uint8_t clockPin)
  970. {
  971. uint8_t mask, value=0;
  972. for (mask=0x80; mask; mask >>= 1) {
  973. digitalWrite(clockPin, HIGH);
  974. if (digitalRead(dataPin)) value |= mask;
  975. digitalWrite(clockPin, LOW);
  976. }
  977. return value;
  978. }
  979. // the systick interrupt is supposed to increment this at 1 kHz rate
  980. volatile uint32_t systick_millis_count = 0;
  981. //uint32_t systick_current, systick_count, systick_istatus; // testing only
  982. uint32_t micros(void)
  983. {
  984. uint32_t count, current, istatus;
  985. __disable_irq();
  986. current = SYST_CVR;
  987. count = systick_millis_count;
  988. istatus = SCB_ICSR; // bit 26 indicates if systick exception pending
  989. __enable_irq();
  990. //systick_current = current;
  991. //systick_count = count;
  992. //systick_istatus = istatus & SCB_ICSR_PENDSTSET ? 1 : 0;
  993. if ((istatus & SCB_ICSR_PENDSTSET) && current > 50) count++;
  994. current = ((F_CPU / 1000) - 1) - current;
  995. #if defined(KINETISL) && F_CPU == 48000000
  996. return count * 1000 + ((current * (uint32_t)87381) >> 22);
  997. #elif defined(KINETISL) && F_CPU == 24000000
  998. return count * 1000 + ((current * (uint32_t)174763) >> 22);
  999. #endif
  1000. return count * 1000 + current / (F_CPU / 1000000);
  1001. }
  1002. void delay(uint32_t ms)
  1003. {
  1004. uint32_t start = micros();
  1005. if (ms > 0) {
  1006. while (1) {
  1007. if ((micros() - start) >= 1000) {
  1008. ms--;
  1009. if (ms == 0) return;
  1010. start += 1000;
  1011. }
  1012. yield();
  1013. }
  1014. }
  1015. }
  1016. // TODO: verify these result in correct timeouts...
  1017. #if F_CPU == 168000000
  1018. #define PULSEIN_LOOPS_PER_USEC 25
  1019. #elif F_CPU == 144000000
  1020. #define PULSEIN_LOOPS_PER_USEC 21
  1021. #elif F_CPU == 120000000
  1022. #define PULSEIN_LOOPS_PER_USEC 18
  1023. #elif F_CPU == 96000000
  1024. #define PULSEIN_LOOPS_PER_USEC 14
  1025. #elif F_CPU == 72000000
  1026. #define PULSEIN_LOOPS_PER_USEC 10
  1027. #elif F_CPU == 48000000
  1028. #define PULSEIN_LOOPS_PER_USEC 7
  1029. #elif F_CPU == 24000000
  1030. #define PULSEIN_LOOPS_PER_USEC 4
  1031. #elif F_CPU == 16000000
  1032. #define PULSEIN_LOOPS_PER_USEC 1
  1033. #elif F_CPU == 8000000
  1034. #define PULSEIN_LOOPS_PER_USEC 1
  1035. #elif F_CPU == 4000000
  1036. #define PULSEIN_LOOPS_PER_USEC 1
  1037. #elif F_CPU == 2000000
  1038. #define PULSEIN_LOOPS_PER_USEC 1
  1039. #endif
  1040. uint32_t pulseIn_high(volatile uint8_t *reg, uint32_t timeout)
  1041. {
  1042. uint32_t timeout_count = timeout * PULSEIN_LOOPS_PER_USEC;
  1043. uint32_t usec_start, usec_stop;
  1044. // wait for any previous pulse to end
  1045. while (*reg) {
  1046. if (--timeout_count == 0) return 0;
  1047. }
  1048. // wait for the pulse to start
  1049. while (!*reg) {
  1050. if (--timeout_count == 0) return 0;
  1051. }
  1052. usec_start = micros();
  1053. // wait for the pulse to stop
  1054. while (*reg) {
  1055. if (--timeout_count == 0) return 0;
  1056. }
  1057. usec_stop = micros();
  1058. return usec_stop - usec_start;
  1059. }
  1060. uint32_t pulseIn_low(volatile uint8_t *reg, uint32_t timeout)
  1061. {
  1062. uint32_t timeout_count = timeout * PULSEIN_LOOPS_PER_USEC;
  1063. uint32_t usec_start, usec_stop;
  1064. // wait for any previous pulse to end
  1065. while (!*reg) {
  1066. if (--timeout_count == 0) return 0;
  1067. }
  1068. // wait for the pulse to start
  1069. while (*reg) {
  1070. if (--timeout_count == 0) return 0;
  1071. }
  1072. usec_start = micros();
  1073. // wait for the pulse to stop
  1074. while (!*reg) {
  1075. if (--timeout_count == 0) return 0;
  1076. }
  1077. usec_stop = micros();
  1078. return usec_stop - usec_start;
  1079. }
  1080. // TODO: an inline version should handle the common case where state is const
  1081. uint32_t pulseIn(uint8_t pin, uint8_t state, uint32_t timeout)
  1082. {
  1083. if (pin >= CORE_NUM_DIGITAL) return 0;
  1084. if (state) return pulseIn_high(portInputRegister(pin), timeout);
  1085. return pulseIn_low(portInputRegister(pin), timeout);;
  1086. }