Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

776 rindas
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. delay(4);
  324. usb_init();
  325. }
  326. static uint8_t analog_write_res = 8;
  327. // SOPT4 is SIM select clocks?
  328. // FTM is clocked by the bus clock, either 24 or 48 MHz
  329. // input capture can be FTM1_CH0, CMP0 or CMP1 or USB start of frame
  330. // 24 MHz with reload 49152 to match Arduino's speed = 488.28125 Hz
  331. void analogWrite(uint8_t pin, int val)
  332. {
  333. uint32_t cval, max;
  334. #if defined(__MK20DX256__)
  335. if (pin == A14) {
  336. uint8_t res = analog_write_res;
  337. if (res < 12) {
  338. val <<= 12 - res;
  339. } else if (res > 12) {
  340. val >>= res - 12;
  341. }
  342. analogWriteDAC0(val);
  343. return;
  344. }
  345. #endif
  346. max = 1 << analog_write_res;
  347. if (val <= 0) {
  348. digitalWrite(pin, LOW);
  349. pinMode(pin, OUTPUT); // TODO: implement OUTPUT_LOW
  350. return;
  351. } else if (val >= max) {
  352. digitalWrite(pin, HIGH);
  353. pinMode(pin, OUTPUT); // TODO: implement OUTPUT_HIGH
  354. return;
  355. }
  356. //serial_print("analogWrite\n");
  357. //serial_print("val = ");
  358. //serial_phex32(val);
  359. //serial_print("\n");
  360. //serial_print("analog_write_res = ");
  361. //serial_phex(analog_write_res);
  362. //serial_print("\n");
  363. if (pin == 3 || pin == 4) {
  364. cval = ((uint32_t)val * (uint32_t)(FTM1_MOD + 1)) >> analog_write_res;
  365. #if defined(__MK20DX256__)
  366. } else if (pin == 25 || pin == 32) {
  367. cval = ((uint32_t)val * (uint32_t)(FTM2_MOD + 1)) >> analog_write_res;
  368. #endif
  369. } else {
  370. cval = ((uint32_t)val * (uint32_t)(FTM0_MOD + 1)) >> analog_write_res;
  371. }
  372. //serial_print("cval = ");
  373. //serial_phex32(cval);
  374. //serial_print("\n");
  375. switch (pin) {
  376. case 3: // PTA12, FTM1_CH0
  377. FTM1_C0V = cval;
  378. CORE_PIN3_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  379. break;
  380. case 4: // PTA13, FTM1_CH1
  381. FTM1_C1V = cval;
  382. CORE_PIN4_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  383. break;
  384. case 5: // PTD7, FTM0_CH7
  385. FTM0_C7V = cval;
  386. CORE_PIN5_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  387. break;
  388. case 6: // PTD4, FTM0_CH4
  389. FTM0_C4V = cval;
  390. CORE_PIN6_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  391. break;
  392. case 9: // PTC3, FTM0_CH2
  393. FTM0_C2V = cval;
  394. CORE_PIN9_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  395. break;
  396. case 10: // PTC4, FTM0_CH3
  397. FTM0_C3V = cval;
  398. CORE_PIN10_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  399. break;
  400. case 20: // PTD5, FTM0_CH5
  401. FTM0_C5V = cval;
  402. CORE_PIN20_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  403. break;
  404. case 21: // PTD6, FTM0_CH6
  405. FTM0_C6V = cval;
  406. CORE_PIN21_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  407. break;
  408. case 22: // PTC1, FTM0_CH0
  409. FTM0_C0V = cval;
  410. CORE_PIN22_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  411. break;
  412. case 23: // PTC2, FTM0_CH1
  413. FTM0_C1V = cval;
  414. CORE_PIN23_CONFIG = PORT_PCR_MUX(4) | PORT_PCR_DSE | PORT_PCR_SRE;
  415. break;
  416. #if defined(__MK20DX256__)
  417. case 32: // PTB18, FTM2_CH0
  418. FTM2_C0V = cval;
  419. CORE_PIN32_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  420. break;
  421. case 25: // PTB19, FTM1_CH1
  422. FTM2_C1V = cval;
  423. CORE_PIN25_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  424. break;
  425. #endif
  426. default:
  427. digitalWrite(pin, (val > 127) ? HIGH : LOW);
  428. pinMode(pin, OUTPUT);
  429. }
  430. }
  431. void analogWriteRes(uint32_t bits)
  432. {
  433. if (bits < 1) {
  434. bits = 1;
  435. } else if (bits > 16) {
  436. bits = 16;
  437. }
  438. analog_write_res = bits;
  439. }
  440. void analogWriteFrequency(uint8_t pin, uint32_t frequency)
  441. {
  442. uint32_t minfreq, prescale, mod;
  443. //serial_print("analogWriteFrequency: pin = ");
  444. //serial_phex(pin);
  445. //serial_print(", freq = ");
  446. //serial_phex32(frequency);
  447. //serial_print("\n");
  448. for (prescale = 0; prescale < 7; prescale++) {
  449. minfreq = (F_BUS >> 16) >> prescale;
  450. if (frequency > minfreq) break;
  451. }
  452. //serial_print("F_BUS = ");
  453. //serial_phex32(F_BUS >> prescale);
  454. //serial_print("\n");
  455. //serial_print("prescale = ");
  456. //serial_phex(prescale);
  457. //serial_print("\n");
  458. //mod = ((F_BUS >> prescale) / frequency) - 1;
  459. mod = (((F_BUS >> prescale) + (frequency >> 1)) / frequency) - 1;
  460. if (mod > 65535) mod = 65535;
  461. //serial_print("mod = ");
  462. //serial_phex32(mod);
  463. //serial_print("\n");
  464. if (pin == 3 || pin == 4) {
  465. FTM1_SC = 0;
  466. FTM1_CNT = 0;
  467. FTM1_MOD = mod;
  468. FTM1_SC = FTM_SC_CLKS(1) | FTM_SC_PS(prescale);
  469. } else if (pin == 5 || pin == 6 || pin == 9 || pin == 10 ||
  470. (pin >= 20 && pin <= 23)) {
  471. FTM0_SC = 0;
  472. FTM0_CNT = 0;
  473. FTM0_MOD = mod;
  474. FTM0_SC = FTM_SC_CLKS(1) | FTM_SC_PS(prescale);
  475. }
  476. }
  477. // TODO: startup code needs to initialize all pins to GPIO mode, input by default
  478. void digitalWrite(uint8_t pin, uint8_t val)
  479. {
  480. if (pin >= CORE_NUM_DIGITAL) return;
  481. if (*portModeRegister(pin)) {
  482. if (val) {
  483. *portSetRegister(pin) = 1;
  484. } else {
  485. *portClearRegister(pin) = 1;
  486. }
  487. } else {
  488. volatile uint32_t *config = portConfigRegister(pin);
  489. if (val) {
  490. // TODO use bitband for atomic read-mod-write
  491. *config |= (PORT_PCR_PE | PORT_PCR_PS);
  492. //*config = PORT_PCR_MUX(1) | PORT_PCR_PE | PORT_PCR_PS;
  493. } else {
  494. // TODO use bitband for atomic read-mod-write
  495. *config &= ~(PORT_PCR_PE);
  496. //*config = PORT_PCR_MUX(1);
  497. }
  498. }
  499. }
  500. uint8_t digitalRead(uint8_t pin)
  501. {
  502. if (pin >= CORE_NUM_DIGITAL) return 0;
  503. return *portInputRegister(pin);
  504. }
  505. void pinMode(uint8_t pin, uint8_t mode)
  506. {
  507. volatile uint32_t *config;
  508. if (pin >= CORE_NUM_DIGITAL) return;
  509. config = portConfigRegister(pin);
  510. if (mode == OUTPUT) {
  511. *portModeRegister(pin) = 1;
  512. *config = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1);
  513. } else {
  514. *portModeRegister(pin) = 0;
  515. if (mode == INPUT) {
  516. *config = PORT_PCR_MUX(1);
  517. } else {
  518. *config = PORT_PCR_MUX(1) | PORT_PCR_PE | PORT_PCR_PS; // pullup
  519. }
  520. }
  521. }
  522. void _shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t value)
  523. {
  524. if (bitOrder == LSBFIRST) {
  525. shiftOut_lsbFirst(dataPin, clockPin, value);
  526. } else {
  527. shiftOut_msbFirst(dataPin, clockPin, value);
  528. }
  529. }
  530. void shiftOut_lsbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value)
  531. {
  532. uint8_t mask;
  533. for (mask=0x01; mask; mask <<= 1) {
  534. digitalWrite(dataPin, value & mask);
  535. digitalWrite(clockPin, HIGH);
  536. digitalWrite(clockPin, LOW);
  537. }
  538. }
  539. void shiftOut_msbFirst(uint8_t dataPin, uint8_t clockPin, uint8_t value)
  540. {
  541. uint8_t mask;
  542. for (mask=0x80; mask; mask >>= 1) {
  543. digitalWrite(dataPin, value & mask);
  544. digitalWrite(clockPin, HIGH);
  545. digitalWrite(clockPin, LOW);
  546. }
  547. }
  548. uint8_t _shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder)
  549. {
  550. if (bitOrder == LSBFIRST) {
  551. return shiftIn_lsbFirst(dataPin, clockPin);
  552. } else {
  553. return shiftIn_msbFirst(dataPin, clockPin);
  554. }
  555. }
  556. uint8_t shiftIn_lsbFirst(uint8_t dataPin, uint8_t clockPin)
  557. {
  558. uint8_t mask, value=0;
  559. for (mask=0x01; mask; mask <<= 1) {
  560. digitalWrite(clockPin, HIGH);
  561. if (digitalRead(dataPin)) value |= mask;
  562. digitalWrite(clockPin, LOW);
  563. }
  564. return value;
  565. }
  566. uint8_t shiftIn_msbFirst(uint8_t dataPin, uint8_t clockPin)
  567. {
  568. uint8_t mask, value=0;
  569. for (mask=0x80; mask; mask >>= 1) {
  570. digitalWrite(clockPin, HIGH);
  571. if (digitalRead(dataPin)) value |= mask;
  572. digitalWrite(clockPin, LOW);
  573. }
  574. return value;
  575. }
  576. // the systick interrupt is supposed to increment this at 1 kHz rate
  577. volatile uint32_t systick_millis_count = 0;
  578. //uint32_t systick_current, systick_count, systick_istatus; // testing only
  579. uint32_t micros(void)
  580. {
  581. uint32_t count, current, istatus;
  582. __disable_irq();
  583. current = SYST_CVR;
  584. count = systick_millis_count;
  585. istatus = SCB_ICSR; // bit 26 indicates if systick exception pending
  586. __enable_irq();
  587. //systick_current = current;
  588. //systick_count = count;
  589. //systick_istatus = istatus & SCB_ICSR_PENDSTSET ? 1 : 0;
  590. if ((istatus & SCB_ICSR_PENDSTSET) && current > 50) count++;
  591. current = ((F_CPU / 1000) - 1) - current;
  592. return count * 1000 + current / (F_CPU / 1000000);
  593. }
  594. void delay(uint32_t ms)
  595. {
  596. uint32_t start = micros();
  597. if (ms > 0) {
  598. while (1) {
  599. if ((micros() - start) >= 1000) {
  600. ms--;
  601. if (ms == 0) return;
  602. start += 1000;
  603. }
  604. yield();
  605. }
  606. }
  607. }
  608. #if F_CPU == 96000000
  609. #define PULSEIN_LOOPS_PER_USEC 14
  610. #elif F_CPU == 48000000
  611. #define PULSEIN_LOOPS_PER_USEC 7
  612. #elif F_CPU == 24000000
  613. #define PULSEIN_LOOPS_PER_USEC 4
  614. #endif
  615. uint32_t pulseIn_high(volatile uint8_t *reg, uint32_t timeout)
  616. {
  617. uint32_t timeout_count = timeout * PULSEIN_LOOPS_PER_USEC;
  618. uint32_t usec_start, usec_stop;
  619. // wait for any previous pulse to end
  620. while (*reg) {
  621. if (--timeout_count == 0) return 0;
  622. }
  623. // wait for the pulse to start
  624. while (!*reg) {
  625. if (--timeout_count == 0) return 0;
  626. }
  627. usec_start = micros();
  628. // wait for the pulse to stop
  629. while (*reg) {
  630. if (--timeout_count == 0) return 0;
  631. }
  632. usec_stop = micros();
  633. return usec_stop - usec_start;
  634. }
  635. uint32_t pulseIn_low(volatile uint8_t *reg, uint32_t timeout)
  636. {
  637. uint32_t timeout_count = timeout * PULSEIN_LOOPS_PER_USEC;
  638. uint32_t usec_start, usec_stop;
  639. // wait for any previous pulse to end
  640. while (!*reg) {
  641. if (--timeout_count == 0) return 0;
  642. }
  643. // wait for the pulse to start
  644. while (*reg) {
  645. if (--timeout_count == 0) return 0;
  646. }
  647. usec_start = micros();
  648. // wait for the pulse to stop
  649. while (!*reg) {
  650. if (--timeout_count == 0) return 0;
  651. }
  652. usec_stop = micros();
  653. return usec_stop - usec_start;
  654. }
  655. // TODO: an inline version should handle the common case where state is const
  656. uint32_t pulseIn(uint8_t pin, uint8_t state, uint32_t timeout)
  657. {
  658. if (pin >= CORE_NUM_DIGITAL) return 0;
  659. if (state) return pulseIn_high(portInputRegister(pin), timeout);
  660. return pulseIn_low(portInputRegister(pin), timeout);;
  661. }