Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

775 lines
22KB

  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 0
  34. // moved to pins_arduino.h
  35. struct digital_pin_bitband_and_config_table_struct {
  36. volatile uint32_t *reg;
  37. volatile uint32_t *config;
  38. };
  39. const struct digital_pin_bitband_and_config_table_struct digital_pin_to_info_PGM[];
  40. // compatibility macros
  41. #define digitalPinToPort(pin) (pin)
  42. #define digitalPinToBitMask(pin) (1)
  43. #define portOutputRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 0))
  44. #define portSetRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 32))
  45. #define portClearRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 64))
  46. #define portToggleRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 96))
  47. #define portInputRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 128))
  48. #define portModeRegister(pin) ((volatile uint8_t *)(digital_pin_to_info_PGM[(pin)].reg + 160))
  49. #define portConfigRegister(pin) ((volatile uint32_t *)(digital_pin_to_info_PGM[(pin)].config))
  50. #endif
  51. //#define digitalPinToTimer(P) ( pgm_read_byte( digital_pin_to_timer_PGM + (P) ) )
  52. //#define analogInPinToBit(P) (P)
  53. #define GPIO_BITBAND_ADDR(reg, bit) (((uint32_t)&(reg) - 0x40000000) * 32 + (bit) * 4 + 0x42000000)
  54. #define GPIO_BITBAND_PTR(reg, bit) ((uint32_t *)GPIO_BITBAND_ADDR((reg), (bit)))
  55. //#define GPIO_SET_BIT(reg, bit) (*GPIO_BITBAND_PTR((reg), (bit)) = 1)
  56. //#define GPIO_CLR_BIT(reg, bit) (*GPIO_BITBAND_PTR((reg), (bit)) = 0)
  57. const struct digital_pin_bitband_and_config_table_struct digital_pin_to_info_PGM[] = {
  58. {GPIO_BITBAND_PTR(CORE_PIN0_PORTREG, CORE_PIN0_BIT), &CORE_PIN0_CONFIG},
  59. {GPIO_BITBAND_PTR(CORE_PIN1_PORTREG, CORE_PIN1_BIT), &CORE_PIN1_CONFIG},
  60. {GPIO_BITBAND_PTR(CORE_PIN2_PORTREG, CORE_PIN2_BIT), &CORE_PIN2_CONFIG},
  61. {GPIO_BITBAND_PTR(CORE_PIN3_PORTREG, CORE_PIN3_BIT), &CORE_PIN3_CONFIG},
  62. {GPIO_BITBAND_PTR(CORE_PIN4_PORTREG, CORE_PIN4_BIT), &CORE_PIN4_CONFIG},
  63. {GPIO_BITBAND_PTR(CORE_PIN5_PORTREG, CORE_PIN5_BIT), &CORE_PIN5_CONFIG},
  64. {GPIO_BITBAND_PTR(CORE_PIN6_PORTREG, CORE_PIN6_BIT), &CORE_PIN6_CONFIG},
  65. {GPIO_BITBAND_PTR(CORE_PIN7_PORTREG, CORE_PIN7_BIT), &CORE_PIN7_CONFIG},
  66. {GPIO_BITBAND_PTR(CORE_PIN8_PORTREG, CORE_PIN8_BIT), &CORE_PIN8_CONFIG},
  67. {GPIO_BITBAND_PTR(CORE_PIN9_PORTREG, CORE_PIN9_BIT), &CORE_PIN9_CONFIG},
  68. {GPIO_BITBAND_PTR(CORE_PIN10_PORTREG, CORE_PIN10_BIT), &CORE_PIN10_CONFIG},
  69. {GPIO_BITBAND_PTR(CORE_PIN11_PORTREG, CORE_PIN11_BIT), &CORE_PIN11_CONFIG},
  70. {GPIO_BITBAND_PTR(CORE_PIN12_PORTREG, CORE_PIN12_BIT), &CORE_PIN12_CONFIG},
  71. {GPIO_BITBAND_PTR(CORE_PIN13_PORTREG, CORE_PIN13_BIT), &CORE_PIN13_CONFIG},
  72. {GPIO_BITBAND_PTR(CORE_PIN14_PORTREG, CORE_PIN14_BIT), &CORE_PIN14_CONFIG},
  73. {GPIO_BITBAND_PTR(CORE_PIN15_PORTREG, CORE_PIN15_BIT), &CORE_PIN15_CONFIG},
  74. {GPIO_BITBAND_PTR(CORE_PIN16_PORTREG, CORE_PIN16_BIT), &CORE_PIN16_CONFIG},
  75. {GPIO_BITBAND_PTR(CORE_PIN17_PORTREG, CORE_PIN17_BIT), &CORE_PIN17_CONFIG},
  76. {GPIO_BITBAND_PTR(CORE_PIN18_PORTREG, CORE_PIN18_BIT), &CORE_PIN18_CONFIG},
  77. {GPIO_BITBAND_PTR(CORE_PIN19_PORTREG, CORE_PIN19_BIT), &CORE_PIN19_CONFIG},
  78. {GPIO_BITBAND_PTR(CORE_PIN20_PORTREG, CORE_PIN20_BIT), &CORE_PIN20_CONFIG},
  79. {GPIO_BITBAND_PTR(CORE_PIN21_PORTREG, CORE_PIN21_BIT), &CORE_PIN21_CONFIG},
  80. {GPIO_BITBAND_PTR(CORE_PIN22_PORTREG, CORE_PIN22_BIT), &CORE_PIN22_CONFIG},
  81. {GPIO_BITBAND_PTR(CORE_PIN23_PORTREG, CORE_PIN23_BIT), &CORE_PIN23_CONFIG},
  82. {GPIO_BITBAND_PTR(CORE_PIN24_PORTREG, CORE_PIN24_BIT), &CORE_PIN24_CONFIG},
  83. {GPIO_BITBAND_PTR(CORE_PIN25_PORTREG, CORE_PIN25_BIT), &CORE_PIN25_CONFIG},
  84. {GPIO_BITBAND_PTR(CORE_PIN26_PORTREG, CORE_PIN26_BIT), &CORE_PIN26_CONFIG},
  85. {GPIO_BITBAND_PTR(CORE_PIN27_PORTREG, CORE_PIN27_BIT), &CORE_PIN27_CONFIG},
  86. {GPIO_BITBAND_PTR(CORE_PIN28_PORTREG, CORE_PIN28_BIT), &CORE_PIN28_CONFIG},
  87. {GPIO_BITBAND_PTR(CORE_PIN29_PORTREG, CORE_PIN29_BIT), &CORE_PIN29_CONFIG},
  88. {GPIO_BITBAND_PTR(CORE_PIN30_PORTREG, CORE_PIN30_BIT), &CORE_PIN30_CONFIG},
  89. {GPIO_BITBAND_PTR(CORE_PIN31_PORTREG, CORE_PIN31_BIT), &CORE_PIN31_CONFIG},
  90. {GPIO_BITBAND_PTR(CORE_PIN32_PORTREG, CORE_PIN32_BIT), &CORE_PIN32_CONFIG},
  91. {GPIO_BITBAND_PTR(CORE_PIN33_PORTREG, CORE_PIN33_BIT), &CORE_PIN33_CONFIG}
  92. };
  93. typedef void (*voidFuncPtr)(void);
  94. volatile static voidFuncPtr intFunc[CORE_NUM_DIGITAL];
  95. void init_pin_interrupts(void)
  96. {
  97. //SIM_SCGC5 = 0x00043F82; // clocks active to all GPIO
  98. NVIC_ENABLE_IRQ(IRQ_PORTA);
  99. NVIC_ENABLE_IRQ(IRQ_PORTB);
  100. NVIC_ENABLE_IRQ(IRQ_PORTC);
  101. NVIC_ENABLE_IRQ(IRQ_PORTD);
  102. NVIC_ENABLE_IRQ(IRQ_PORTE);
  103. // TODO: maybe these should be set to a lower priority
  104. // so if the user puts lots of slow code on attachInterrupt
  105. // fast interrupts will still be serviced quickly?
  106. }
  107. void attachInterrupt(uint8_t pin, void (*function)(void), int mode)
  108. {
  109. volatile uint32_t *config;
  110. uint32_t cfg, mask;
  111. if (pin >= CORE_NUM_DIGITAL) return;
  112. switch (mode) {
  113. case CHANGE: mask = 0x0B; break;
  114. case RISING: mask = 0x09; break;
  115. case FALLING: mask = 0x0A; break;
  116. case LOW: mask = 0x08; break;
  117. case HIGH: mask = 0x0C; break;
  118. default: return;
  119. }
  120. mask = (mask << 16) | 0x01000000;
  121. config = portConfigRegister(pin);
  122. __disable_irq();
  123. cfg = *config;
  124. cfg &= ~0x000F0000; // disable any previous interrupt
  125. *config = cfg;
  126. intFunc[pin] = function; // set the function pointer
  127. cfg |= mask;
  128. *config = cfg; // enable the new interrupt
  129. __enable_irq();
  130. }
  131. void detachInterrupt(uint8_t pin)
  132. {
  133. volatile uint32_t *config;
  134. config = portConfigRegister(pin);
  135. __disable_irq();
  136. *config = ((*config & ~0x000F0000) | 0x01000000);
  137. intFunc[pin] = NULL;
  138. __enable_irq();
  139. }
  140. void porta_isr(void)
  141. {
  142. uint32_t isfr = PORTA_ISFR;
  143. PORTA_ISFR = isfr;
  144. if ((isfr & CORE_PIN3_BITMASK) && intFunc[3]) intFunc[3]();
  145. if ((isfr & CORE_PIN4_BITMASK) && intFunc[4]) intFunc[4]();
  146. if ((isfr & CORE_PIN24_BITMASK) && intFunc[24]) intFunc[24]();
  147. if ((isfr & CORE_PIN33_BITMASK) && intFunc[33]) intFunc[33]();
  148. }
  149. void portb_isr(void)
  150. {
  151. uint32_t isfr = PORTB_ISFR;
  152. PORTB_ISFR = isfr;
  153. if ((isfr & CORE_PIN0_BITMASK) && intFunc[0]) intFunc[0]();
  154. if ((isfr & CORE_PIN1_BITMASK) && intFunc[1]) intFunc[1]();
  155. if ((isfr & CORE_PIN16_BITMASK) && intFunc[16]) intFunc[16]();
  156. if ((isfr & CORE_PIN17_BITMASK) && intFunc[17]) intFunc[17]();
  157. if ((isfr & CORE_PIN18_BITMASK) && intFunc[18]) intFunc[18]();
  158. if ((isfr & CORE_PIN19_BITMASK) && intFunc[19]) intFunc[19]();
  159. if ((isfr & CORE_PIN25_BITMASK) && intFunc[25]) intFunc[25]();
  160. if ((isfr & CORE_PIN32_BITMASK) && intFunc[32]) intFunc[32]();
  161. }
  162. void portc_isr(void)
  163. {
  164. // TODO: these are inefficent. Use CLZ somehow....
  165. uint32_t isfr = PORTC_ISFR;
  166. PORTC_ISFR = isfr;
  167. if ((isfr & CORE_PIN9_BITMASK) && intFunc[9]) intFunc[9]();
  168. if ((isfr & CORE_PIN10_BITMASK) && intFunc[10]) intFunc[10]();
  169. if ((isfr & CORE_PIN11_BITMASK) && intFunc[11]) intFunc[11]();
  170. if ((isfr & CORE_PIN12_BITMASK) && intFunc[12]) intFunc[12]();
  171. if ((isfr & CORE_PIN13_BITMASK) && intFunc[13]) intFunc[13]();
  172. if ((isfr & CORE_PIN15_BITMASK) && intFunc[15]) intFunc[15]();
  173. if ((isfr & CORE_PIN22_BITMASK) && intFunc[22]) intFunc[22]();
  174. if ((isfr & CORE_PIN23_BITMASK) && intFunc[23]) intFunc[23]();
  175. if ((isfr & CORE_PIN27_BITMASK) && intFunc[27]) intFunc[27]();
  176. if ((isfr & CORE_PIN28_BITMASK) && intFunc[28]) intFunc[28]();
  177. if ((isfr & CORE_PIN29_BITMASK) && intFunc[29]) intFunc[29]();
  178. if ((isfr & CORE_PIN30_BITMASK) && intFunc[30]) intFunc[30]();
  179. }
  180. void portd_isr(void)
  181. {
  182. uint32_t isfr = PORTD_ISFR;
  183. PORTD_ISFR = isfr;
  184. if ((isfr & CORE_PIN2_BITMASK) && intFunc[2]) intFunc[2]();
  185. if ((isfr & CORE_PIN5_BITMASK) && intFunc[5]) intFunc[5]();
  186. if ((isfr & CORE_PIN6_BITMASK) && intFunc[6]) intFunc[6]();
  187. if ((isfr & CORE_PIN7_BITMASK) && intFunc[7]) intFunc[7]();
  188. if ((isfr & CORE_PIN8_BITMASK) && intFunc[8]) intFunc[8]();
  189. if ((isfr & CORE_PIN14_BITMASK) && intFunc[14]) intFunc[14]();
  190. if ((isfr & CORE_PIN20_BITMASK) && intFunc[20]) intFunc[20]();
  191. if ((isfr & CORE_PIN21_BITMASK) && intFunc[21]) intFunc[21]();
  192. }
  193. void porte_isr(void)
  194. {
  195. uint32_t isfr = PORTE_ISFR;
  196. PORTE_ISFR = isfr;
  197. if ((isfr & CORE_PIN26_BITMASK) && intFunc[26]) intFunc[26]();
  198. if ((isfr & CORE_PIN31_BITMASK) && intFunc[31]) intFunc[31]();
  199. }
  200. unsigned long rtc_get(void)
  201. {
  202. return RTC_TSR;
  203. }
  204. void rtc_set(unsigned long t)
  205. {
  206. RTC_SR = 0;
  207. RTC_TPR = 0;
  208. RTC_TSR = t;
  209. RTC_SR = RTC_SR_TCE;
  210. }
  211. // adjust is the amount of crystal error to compensate, 1 = 0.1192 ppm
  212. // For example, adjust = -100 is slows the clock by 11.92 ppm
  213. //
  214. void rtc_compensate(int adjust)
  215. {
  216. uint32_t comp, interval, tcr;
  217. // This simple approach tries to maximize the interval.
  218. // Perhaps minimizing TCR would be better, so the
  219. // compensation is distributed more evenly across
  220. // many seconds, rather than saving it all up and then
  221. // altering one second up to +/- 0.38%
  222. if (adjust >= 0) {
  223. comp = adjust;
  224. interval = 256;
  225. while (1) {
  226. tcr = comp * interval;
  227. if (tcr < 128*256) break;
  228. if (--interval == 1) break;
  229. }
  230. tcr = tcr >> 8;
  231. } else {
  232. comp = -adjust;
  233. interval = 256;
  234. while (1) {
  235. tcr = comp * interval;
  236. if (tcr < 129*256) break;
  237. if (--interval == 1) break;
  238. }
  239. tcr = tcr >> 8;
  240. tcr = 256 - tcr;
  241. }
  242. RTC_TCR = ((interval - 1) << 8) | tcr;
  243. }
  244. #if 0
  245. // TODO: build system should define this
  246. // so RTC is automatically initialized to approx correct time
  247. // at least when the program begins running right after upload
  248. #ifndef TIME_T
  249. #define TIME_T 1350160272
  250. #endif
  251. void init_rtc(void)
  252. {
  253. serial_print("init_rtc\n");
  254. //SIM_SCGC6 |= SIM_SCGC6_RTC;
  255. // enable the RTC crystal oscillator, for approx 12pf crystal
  256. if (!(RTC_CR & RTC_CR_OSCE)) {
  257. serial_print("start RTC oscillator\n");
  258. RTC_SR = 0;
  259. RTC_CR = RTC_CR_SC16P | RTC_CR_SC4P | RTC_CR_OSCE;
  260. }
  261. // should wait for crystal to stabilize.....
  262. serial_print("SR=");
  263. serial_phex32(RTC_SR);
  264. serial_print("\n");
  265. serial_print("CR=");
  266. serial_phex32(RTC_CR);
  267. serial_print("\n");
  268. serial_print("TSR=");
  269. serial_phex32(RTC_TSR);
  270. serial_print("\n");
  271. serial_print("TCR=");
  272. serial_phex32(RTC_TCR);
  273. serial_print("\n");
  274. if (RTC_SR & RTC_SR_TIF) {
  275. // enable the RTC
  276. RTC_SR = 0;
  277. RTC_TPR = 0;
  278. RTC_TSR = TIME_T;
  279. RTC_SR = RTC_SR_TCE;
  280. }
  281. }
  282. #endif
  283. extern void usb_init(void);
  284. // create a default PWM at the same 488.28 Hz as Arduino Uno
  285. #if F_BUS == 48000000
  286. #define DEFAULT_FTM_MOD (49152 - 1)
  287. #define DEFAULT_FTM_PRESCALE 1
  288. #else
  289. #define DEFAULT_FTM_MOD (49152 - 1)
  290. #define DEFAULT_FTM_PRESCALE 0
  291. #endif
  292. //void init_pins(void)
  293. void _init_Teensyduino_internal_(void)
  294. {
  295. init_pin_interrupts();
  296. //SIM_SCGC6 |= SIM_SCGC6_FTM0; // TODO: use bitband for atomic read-mod-write
  297. //SIM_SCGC6 |= SIM_SCGC6_FTM1;
  298. FTM0_CNT = 0;
  299. FTM0_MOD = DEFAULT_FTM_MOD;
  300. FTM0_C0SC = 0x28; // MSnB:MSnA = 10, ELSnB:ELSnA = 10
  301. FTM0_C1SC = 0x28;
  302. FTM0_C2SC = 0x28;
  303. FTM0_C3SC = 0x28;
  304. FTM0_C4SC = 0x28;
  305. FTM0_C5SC = 0x28;
  306. FTM0_C6SC = 0x28;
  307. FTM0_C7SC = 0x28;
  308. FTM0_SC = FTM_SC_CLKS(1) | FTM_SC_PS(DEFAULT_FTM_PRESCALE);
  309. FTM1_CNT = 0;
  310. FTM1_MOD = DEFAULT_FTM_MOD;
  311. FTM1_C0SC = 0x28;
  312. FTM1_C1SC = 0x28;
  313. FTM1_SC = FTM_SC_CLKS(1) | FTM_SC_PS(DEFAULT_FTM_PRESCALE);
  314. #if defined(__MK20DX256__)
  315. FTM2_CNT = 0;
  316. FTM2_MOD = DEFAULT_FTM_MOD;
  317. FTM2_C0SC = 0x28;
  318. FTM2_C1SC = 0x28;
  319. FTM2_SC = FTM_SC_CLKS(1) | FTM_SC_PS(DEFAULT_FTM_PRESCALE);
  320. #endif
  321. analog_init();
  322. //delay(100); // TODO: this is not necessary, right?
  323. usb_init();
  324. }
  325. static uint8_t analog_write_res = 8;
  326. // SOPT4 is SIM select clocks?
  327. // FTM is clocked by the bus clock, either 24 or 48 MHz
  328. // input capture can be FTM1_CH0, CMP0 or CMP1 or USB start of frame
  329. // 24 MHz with reload 49152 to match Arduino's speed = 488.28125 Hz
  330. void analogWrite(uint8_t pin, int val)
  331. {
  332. uint32_t cval, max;
  333. #if defined(__MK20DX256__)
  334. if (pin == A14) {
  335. uint8_t res = analog_write_res;
  336. if (res < 12) {
  337. val <<= 12 - res;
  338. } else if (res > 12) {
  339. val >>= res - 12;
  340. }
  341. analogWriteDAC0(val);
  342. return;
  343. }
  344. #endif
  345. max = 1 << analog_write_res;
  346. if (val <= 0) {
  347. digitalWrite(pin, LOW);
  348. pinMode(pin, OUTPUT); // TODO: implement OUTPUT_LOW
  349. return;
  350. } else if (val >= max) {
  351. digitalWrite(pin, HIGH);
  352. pinMode(pin, OUTPUT); // TODO: implement OUTPUT_HIGH
  353. return;
  354. }
  355. //serial_print("analogWrite\n");
  356. //serial_print("val = ");
  357. //serial_phex32(val);
  358. //serial_print("\n");
  359. //serial_print("analog_write_res = ");
  360. //serial_phex(analog_write_res);
  361. //serial_print("\n");
  362. if (pin == 3 || pin == 4) {
  363. cval = ((uint32_t)val * (uint32_t)(FTM1_MOD + 1)) >> analog_write_res;
  364. #if defined(__MK20DX256__)
  365. } else if (pin == 25 || pin == 32) {
  366. cval = ((uint32_t)val * (uint32_t)(FTM2_MOD + 1)) >> analog_write_res;
  367. #endif
  368. } else {
  369. cval = ((uint32_t)val * (uint32_t)(FTM0_MOD + 1)) >> analog_write_res;
  370. }
  371. //serial_print("cval = ");
  372. //serial_phex32(cval);
  373. //serial_print("\n");
  374. switch (pin) {
  375. case 3: // PTA12, FTM1_CH0
  376. FTM1_C0V = cval;
  377. CORE_PIN3_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  378. break;
  379. case 4: // PTA13, FTM1_CH1
  380. FTM1_C1V = cval;
  381. CORE_PIN4_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  382. break;
  383. case 5: // PTD7, FTM0_CH7
  384. FTM0_C7V = cval;
  385. CORE_PIN5_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  386. break;
  387. case 6: // PTD4, FTM0_CH4
  388. FTM0_C4V = cval;
  389. CORE_PIN6_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  390. break;
  391. case 9: // PTC3, FTM0_CH2
  392. FTM0_C2V = cval;
  393. CORE_PIN9_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  394. break;
  395. case 10: // PTC4, FTM0_CH3
  396. FTM0_C3V = cval;
  397. CORE_PIN10_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  398. break;
  399. case 20: // PTD5, FTM0_CH5
  400. FTM0_C5V = cval;
  401. CORE_PIN20_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  402. break;
  403. case 21: // PTD6, FTM0_CH6
  404. FTM0_C6V = cval;
  405. CORE_PIN21_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  406. break;
  407. case 22: // PTC1, FTM0_CH0
  408. FTM0_C0V = cval;
  409. CORE_PIN22_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  410. break;
  411. case 23: // PTC2, FTM0_CH1
  412. FTM0_C1V = cval;
  413. CORE_PIN23_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  414. break;
  415. #if defined(__MK20DX256__)
  416. case 32: // PTB18, FTM2_CH0
  417. FTM2_C0V = cval;
  418. CORE_PIN32_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  419. break;
  420. case 25: // PTB19, FTM1_CH1
  421. FTM2_C1V = cval;
  422. CORE_PIN25_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  423. break;
  424. #endif
  425. default:
  426. digitalWrite(pin, (val > 127) ? HIGH : LOW);
  427. pinMode(pin, OUTPUT);
  428. }
  429. }
  430. void analogWriteRes(uint32_t bits)
  431. {
  432. if (bits < 1) {
  433. bits = 1;
  434. } else if (bits > 16) {
  435. bits = 16;
  436. }
  437. analog_write_res = bits;
  438. }
  439. void analogWriteFrequency(uint8_t pin, uint32_t frequency)
  440. {
  441. uint32_t minfreq, prescale, mod;
  442. //serial_print("analogWriteFrequency: pin = ");
  443. //serial_phex(pin);
  444. //serial_print(", freq = ");
  445. //serial_phex32(frequency);
  446. //serial_print("\n");
  447. for (prescale = 0; prescale < 7; prescale++) {
  448. minfreq = (F_BUS >> 16) >> prescale;
  449. if (frequency > minfreq) break;
  450. }
  451. //serial_print("F_BUS = ");
  452. //serial_phex32(F_BUS >> prescale);
  453. //serial_print("\n");
  454. //serial_print("prescale = ");
  455. //serial_phex(prescale);
  456. //serial_print("\n");
  457. //mod = ((F_BUS >> prescale) / frequency) - 1;
  458. mod = (((F_BUS >> prescale) + (frequency >> 1)) / frequency) - 1;
  459. if (mod > 65535) mod = 65535;
  460. //serial_print("mod = ");
  461. //serial_phex32(mod);
  462. //serial_print("\n");
  463. if (pin == 3 || pin == 4) {
  464. FTM1_SC = 0;
  465. FTM1_CNT = 0;
  466. FTM1_MOD = mod;
  467. FTM1_SC = FTM_SC_CLKS(1) | FTM_SC_PS(prescale);
  468. } else if (pin == 5 || pin == 6 || pin == 9 || pin == 10 ||
  469. (pin >= 20 && pin <= 23)) {
  470. FTM0_SC = 0;
  471. FTM0_CNT = 0;
  472. FTM0_MOD = mod;
  473. FTM0_SC = FTM_SC_CLKS(1) | FTM_SC_PS(prescale);
  474. }
  475. }
  476. // TODO: startup code needs to initialize all pins to GPIO mode, input by default
  477. void digitalWrite(uint8_t pin, uint8_t val)
  478. {
  479. if (pin >= CORE_NUM_DIGITAL) return;
  480. if (*portModeRegister(pin)) {
  481. if (val) {
  482. *portSetRegister(pin) = 1;
  483. } else {
  484. *portClearRegister(pin) = 1;
  485. }
  486. } else {
  487. volatile uint32_t *config = portConfigRegister(pin);
  488. if (val) {
  489. // TODO use bitband for atomic read-mod-write
  490. *config |= (PORT_PCR_PE | PORT_PCR_PS);
  491. //*config = PORT_PCR_MUX(1) | PORT_PCR_PE | PORT_PCR_PS;
  492. } else {
  493. // TODO use bitband for atomic read-mod-write
  494. *config &= ~(PORT_PCR_PE);
  495. //*config = PORT_PCR_MUX(1);
  496. }
  497. }
  498. }
  499. uint8_t digitalRead(uint8_t pin)
  500. {
  501. if (pin >= CORE_NUM_DIGITAL) return 0;
  502. return *portInputRegister(pin);
  503. }
  504. void pinMode(uint8_t pin, uint8_t mode)
  505. {
  506. volatile uint32_t *config;
  507. if (pin >= CORE_NUM_DIGITAL) return;
  508. config = portConfigRegister(pin);
  509. if (mode == OUTPUT) {
  510. *portModeRegister(pin) = 1;
  511. *config = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1);
  512. } else {
  513. *portModeRegister(pin) = 0;
  514. if (mode == INPUT) {
  515. *config = PORT_PCR_MUX(1);
  516. } else {
  517. *config = PORT_PCR_MUX(1) | PORT_PCR_PE | PORT_PCR_PS; // pullup
  518. }
  519. }
  520. }
  521. void _shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t value)
  522. {
  523. if (bitOrder == LSBFIRST) {
  524. shiftOut_lsbFirst(dataPin, clockPin, value);
  525. } else {
  526. shiftOut_msbFirst(dataPin, clockPin, value);
  527. }
  528. }
  529. void shiftOut_lsbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value)
  530. {
  531. uint8_t mask;
  532. for (mask=0x01; mask; mask <<= 1) {
  533. digitalWrite(dataPin, value & mask);
  534. digitalWrite(clockPin, HIGH);
  535. digitalWrite(clockPin, LOW);
  536. }
  537. }
  538. void shiftOut_msbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value)
  539. {
  540. uint8_t mask;
  541. for (mask=0x80; mask; mask >>= 1) {
  542. digitalWrite(dataPin, value & mask);
  543. digitalWrite(clockPin, HIGH);
  544. digitalWrite(clockPin, LOW);
  545. }
  546. }
  547. uint8_t _shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder)
  548. {
  549. if (bitOrder == LSBFIRST) {
  550. return shiftIn_lsbFirst(dataPin, clockPin);
  551. } else {
  552. return shiftIn_msbFirst(dataPin, clockPin);
  553. }
  554. }
  555. uint8_t shiftIn_lsbFirst(uint8_t dataPin, uint8_t clockPin)
  556. {
  557. uint8_t mask, value=0;
  558. for (mask=0x01; mask; mask <<= 1) {
  559. digitalWrite(clockPin, HIGH);
  560. if (digitalRead(dataPin)) value |= mask;
  561. digitalWrite(clockPin, LOW);
  562. }
  563. return value;
  564. }
  565. uint8_t shiftIn_msbFirst(uint8_t dataPin, uint8_t clockPin)
  566. {
  567. uint8_t mask, value=0;
  568. for (mask=0x80; mask; mask >>= 1) {
  569. digitalWrite(clockPin, HIGH);
  570. if (digitalRead(dataPin)) value |= mask;
  571. digitalWrite(clockPin, LOW);
  572. }
  573. return value;
  574. }
  575. // the systick interrupt is supposed to increment this at 1 kHz rate
  576. volatile uint32_t systick_millis_count = 0;
  577. //uint32_t systick_current, systick_count, systick_istatus; // testing only
  578. uint32_t micros(void)
  579. {
  580. uint32_t count, current, istatus;
  581. __disable_irq();
  582. current = SYST_CVR;
  583. count = systick_millis_count;
  584. istatus = SCB_ICSR; // bit 26 indicates if systick exception pending
  585. __enable_irq();
  586. //systick_current = current;
  587. //systick_count = count;
  588. //systick_istatus = istatus & SCB_ICSR_PENDSTSET ? 1 : 0;
  589. if ((istatus & SCB_ICSR_PENDSTSET) && current > 50) count++;
  590. current = ((F_CPU / 1000) - 1) - current;
  591. return count * 1000 + current / (F_CPU / 1000000);
  592. }
  593. void delay(uint32_t ms)
  594. {
  595. uint32_t start = micros();
  596. if (ms > 0) {
  597. while (1) {
  598. if ((micros() - start) >= 1000) {
  599. ms--;
  600. if (ms == 0) return;
  601. start += 1000;
  602. }
  603. yield();
  604. }
  605. }
  606. }
  607. #if F_CPU == 96000000
  608. #define PULSEIN_LOOPS_PER_USEC 14
  609. #elif F_CPU == 48000000
  610. #define PULSEIN_LOOPS_PER_USEC 7
  611. #elif F_CPU == 24000000
  612. #define PULSEIN_LOOPS_PER_USEC 4
  613. #endif
  614. uint32_t pulseIn_high(volatile uint8_t *reg, uint32_t timeout)
  615. {
  616. uint32_t timeout_count = timeout * PULSEIN_LOOPS_PER_USEC;
  617. uint32_t usec_start, usec_stop;
  618. // wait for any previous pulse to end
  619. while (*reg) {
  620. if (--timeout_count == 0) return 0;
  621. }
  622. // wait for the pulse to start
  623. while (!*reg) {
  624. if (--timeout_count == 0) return 0;
  625. }
  626. usec_start = micros();
  627. // wait for the pulse to stop
  628. while (*reg) {
  629. if (--timeout_count == 0) return 0;
  630. }
  631. usec_stop = micros();
  632. return usec_stop - usec_start;
  633. }
  634. uint32_t pulseIn_low(volatile uint8_t *reg, uint32_t timeout)
  635. {
  636. uint32_t timeout_count = timeout * PULSEIN_LOOPS_PER_USEC;
  637. uint32_t usec_start, usec_stop;
  638. // wait for any previous pulse to end
  639. while (!*reg) {
  640. if (--timeout_count == 0) return 0;
  641. }
  642. // wait for the pulse to start
  643. while (*reg) {
  644. if (--timeout_count == 0) return 0;
  645. }
  646. usec_start = micros();
  647. // wait for the pulse to stop
  648. while (!*reg) {
  649. if (--timeout_count == 0) return 0;
  650. }
  651. usec_stop = micros();
  652. return usec_stop - usec_start;
  653. }
  654. // TODO: an inline version should handle the common case where state is const
  655. uint32_t pulseIn(uint8_t pin, uint8_t state, uint32_t timeout)
  656. {
  657. if (pin >= CORE_NUM_DIGITAL) return 0;
  658. if (state) return pulseIn_high(portInputRegister(pin), timeout);
  659. return pulseIn_low(portInputRegister(pin), timeout);;
  660. }