選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

581 行
18KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2019 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 "HardwareSerial.h"
  31. #include "core_pins.h"
  32. #include "Arduino.h"
  33. //#include "debug/printf.h"
  34. /*typedef struct {
  35. const uint32_t VERID;
  36. const uint32_t PARAM;
  37. volatile uint32_t GLOBAL;
  38. volatile uint32_t PINCFG;
  39. volatile uint32_t BAUD;
  40. volatile uint32_t STAT;
  41. volatile uint32_t CTRL;
  42. volatile uint32_t DATA;
  43. volatile uint32_t MATCH;
  44. volatile uint32_t MODIR;
  45. volatile uint32_t FIFO;
  46. volatile uint32_t WATER;
  47. } IMXRT_LPUART_t; */
  48. //. From Onewire utility files
  49. #define PIN_TO_BASEREG(pin) (portOutputRegister(pin))
  50. #define PIN_TO_BITMASK(pin) (digitalPinToBitMask(pin))
  51. #define IO_REG_TYPE uint32_t
  52. #define IO_REG_BASE_ATTR
  53. #define IO_REG_MASK_ATTR
  54. #define DIRECT_READ(base, mask) ((*((base)+2) & (mask)) ? 1 : 0)
  55. #define DIRECT_MODE_INPUT(base, mask) (*((base)+1) &= ~(mask))
  56. #define DIRECT_MODE_OUTPUT(base, mask) (*((base)+1) |= (mask))
  57. #define DIRECT_WRITE_LOW(base, mask) (*((base)+34) = (mask))
  58. #define DIRECT_WRITE_HIGH(base, mask) (*((base)+33) = (mask))
  59. #define UART_CLOCK 24000000
  60. #if defined(ARDUINO_TEENSY41)
  61. SerialEventCheckingFunctionPointer HardwareSerial::serial_event_handler_checks[8] = {nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr};
  62. #else
  63. SerialEventCheckingFunctionPointer HardwareSerial::serial_event_handler_checks[7] = {nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr};
  64. #endif
  65. uint8_t HardwareSerial::serial_event_handlers_active = 0;
  66. #define CTRL_ENABLE (LPUART_CTRL_TE | LPUART_CTRL_RE | LPUART_CTRL_RIE | LPUART_CTRL_ILIE)
  67. #define CTRL_TX_ACTIVE (CTRL_ENABLE | LPUART_CTRL_TIE)
  68. #define CTRL_TX_COMPLETING (CTRL_ENABLE | LPUART_CTRL_TCIE)
  69. #define CTRL_TX_INACTIVE CTRL_ENABLE
  70. // Copied from T3.x - probably should move to other location.
  71. int nvic_execution_priority(void)
  72. {
  73. uint32_t priority=256;
  74. uint32_t primask, faultmask, basepri, ipsr;
  75. // full algorithm in ARM DDI0403D, page B1-639
  76. // this isn't quite complete, but hopefully good enough
  77. __asm__ volatile("mrs %0, faultmask\n" : "=r" (faultmask)::);
  78. if (faultmask) return -1;
  79. __asm__ volatile("mrs %0, primask\n" : "=r" (primask)::);
  80. if (primask) return 0;
  81. __asm__ volatile("mrs %0, ipsr\n" : "=r" (ipsr)::);
  82. if (ipsr) {
  83. if (ipsr < 16) priority = 0; // could be non-zero
  84. else priority = NVIC_GET_PRIORITY(ipsr - 16);
  85. }
  86. __asm__ volatile("mrs %0, basepri\n" : "=r" (basepri)::);
  87. if (basepri > 0 && basepri < priority) priority = basepri;
  88. return priority;
  89. }
  90. void HardwareSerial::begin(uint32_t baud, uint16_t format)
  91. {
  92. //printf("HardwareSerial begin\n");
  93. float base = (float)UART_CLOCK / (float)baud;
  94. float besterr = 1e20;
  95. int bestdiv = 1;
  96. int bestosr = 4;
  97. for (int osr=4; osr <= 32; osr++) {
  98. float div = base / (float)osr;
  99. int divint = (int)(div + 0.5f);
  100. if (divint < 1) divint = 1;
  101. else if (divint > 8191) divint = 8191;
  102. float err = ((float)divint - div) / div;
  103. if (err < 0.0f) err = -err;
  104. if (err <= besterr) {
  105. besterr = err;
  106. bestdiv = divint;
  107. bestosr = osr;
  108. }
  109. }
  110. //printf(" baud %d: osr=%d, div=%d\n", baud, bestosr, bestdiv);
  111. rx_buffer_head_ = 0;
  112. rx_buffer_tail_ = 0;
  113. tx_buffer_head_ = 0;
  114. tx_buffer_tail_ = 0;
  115. rts_low_watermark_ = rx_buffer_total_size_ - hardware->rts_low_watermark;
  116. rts_high_watermark_ = rx_buffer_total_size_ - hardware->rts_high_watermark;
  117. transmitting_ = 0;
  118. hardware->ccm_register |= hardware->ccm_value;
  119. // uint32_t fastio = IOMUXC_PAD_SRE | IOMUXC_PAD_DSE(3) | IOMUXC_PAD_SPEED(3);
  120. *(portControlRegister(hardware->rx_pins[rx_pin_index_].pin)) = IOMUXC_PAD_DSE(7) | IOMUXC_PAD_PKE | IOMUXC_PAD_PUE | IOMUXC_PAD_PUS(3) | IOMUXC_PAD_HYS;
  121. *(portConfigRegister(hardware->rx_pins[rx_pin_index_].pin)) = hardware->rx_pins[rx_pin_index_].mux_val;
  122. if (hardware->rx_pins[rx_pin_index_].select_input_register) {
  123. *(hardware->rx_pins[rx_pin_index_].select_input_register) = hardware->rx_pins[rx_pin_index_].select_val;
  124. }
  125. *(portControlRegister(hardware->tx_pins[tx_pin_index_].pin)) = IOMUXC_PAD_SRE | IOMUXC_PAD_DSE(3) | IOMUXC_PAD_SPEED(3);
  126. *(portConfigRegister(hardware->tx_pins[tx_pin_index_].pin)) = hardware->tx_pins[tx_pin_index_].mux_val;
  127. //hardware->rx_mux_register = hardware->rx_mux_val;
  128. //hardware->tx_mux_register = hardware->tx_mux_val;
  129. port->BAUD = LPUART_BAUD_OSR(bestosr - 1) | LPUART_BAUD_SBR(bestdiv)
  130. | (bestosr <= 8 ? LPUART_BAUD_BOTHEDGE : 0);
  131. port->PINCFG = 0;
  132. // Enable the transmitter, receiver and enable receiver interrupt
  133. attachInterruptVector(hardware->irq, hardware->irq_handler);
  134. NVIC_SET_PRIORITY(hardware->irq, hardware->irq_priority); // maybe should put into hardware...
  135. NVIC_ENABLE_IRQ(hardware->irq);
  136. uint16_t tx_fifo_size = (((port->FIFO >> 4) & 0x7) << 2);
  137. uint8_t tx_water = (tx_fifo_size < 16) ? tx_fifo_size >> 1 : 7;
  138. uint16_t rx_fifo_size = (((port->FIFO >> 0) & 0x7) << 2);
  139. uint8_t rx_water = (rx_fifo_size < 16) ? rx_fifo_size >> 1 : 7;
  140. /*
  141. Serial.printf("SerialX::begin stat:%x ctrl:%x fifo:%x water:%x\n", port->STAT, port->CTRL, port->FIFO, port->WATER );
  142. Serial.printf(" FIFO sizes: tx:%d rx:%d\n",tx_fifo_size, rx_fifo_size);
  143. Serial.printf(" Watermark tx:%d, rx: %d\n", tx_water, rx_water);
  144. */
  145. port->WATER = LPUART_WATER_RXWATER(rx_water) | LPUART_WATER_TXWATER(tx_water);
  146. port->FIFO |= LPUART_FIFO_TXFE | LPUART_FIFO_RXFE;
  147. // lets configure up our CTRL register value
  148. uint32_t ctrl = CTRL_TX_INACTIVE;
  149. // Now process the bits in the Format value passed in
  150. // Bits 0-2 - Parity plus 9 bit.
  151. ctrl |= (format & (LPUART_CTRL_PT | LPUART_CTRL_PE) ); // configure parity - turn off PT, PE, M and configure PT, PE
  152. if (format & 0x04) ctrl |= LPUART_CTRL_M; // 9 bits (might include parity)
  153. if ((format & 0x0F) == 0x04) ctrl |= LPUART_CTRL_R9T8; // 8N2 is 9 bit with 9th bit always 1
  154. // Bit 5 TXINVERT
  155. if (format & 0x20) ctrl |= LPUART_CTRL_TXINV; // tx invert
  156. // write out computed CTRL
  157. port->CTRL = ctrl;
  158. // Bit 3 10 bit - Will assume that begin already cleared it.
  159. // process some other bits which change other registers.
  160. if (format & 0x08) port->BAUD |= LPUART_BAUD_M10;
  161. // Bit 4 RXINVERT
  162. uint32_t c = port->STAT & ~LPUART_STAT_RXINV;
  163. if (format & 0x10) c |= LPUART_STAT_RXINV; // rx invert
  164. port->STAT = c;
  165. // bit 8 can turn on 2 stop bit mote
  166. if ( format & 0x100) port->BAUD |= LPUART_BAUD_SBNS;
  167. //Serial.printf(" stat:%x ctrl:%x fifo:%x water:%x\n", port->STAT, port->CTRL, port->FIFO, port->WATER );
  168. enableSerialEvents(); // Enable the processing of serialEvent for this object
  169. };
  170. inline void HardwareSerial::rts_assert()
  171. {
  172. DIRECT_WRITE_LOW(rts_pin_baseReg_, rts_pin_bitmask_);
  173. }
  174. inline void HardwareSerial::rts_deassert()
  175. {
  176. DIRECT_WRITE_HIGH(rts_pin_baseReg_, rts_pin_bitmask_);
  177. }
  178. void HardwareSerial::end(void)
  179. {
  180. if (!(hardware->ccm_register & hardware->ccm_value)) return;
  181. while (transmitting_) yield(); // wait for buffered data to send
  182. port->CTRL = 0; // disable the TX and RX ...
  183. // Not sure if this is best, but I think most IO pins default to Mode 5? which appears to be digital IO?
  184. *(portConfigRegister(hardware->rx_pins[rx_pin_index_].pin)) = 5;
  185. *(portConfigRegister(hardware->tx_pins[tx_pin_index_].pin)) = 5;
  186. // Might need to clear out other areas as well?
  187. rx_buffer_head_ = 0;
  188. rx_buffer_tail_ = 0;
  189. if (rts_pin_baseReg_) rts_deassert();
  190. //
  191. disableSerialEvents(); // disable the processing of serialEvent for this object
  192. }
  193. void HardwareSerial::transmitterEnable(uint8_t pin)
  194. {
  195. while (transmitting_) ;
  196. pinMode(pin, OUTPUT);
  197. transmit_pin_baseReg_ = PIN_TO_BASEREG(pin);
  198. transmit_pin_bitmask_ = PIN_TO_BITMASK(pin);
  199. DIRECT_WRITE_LOW(transmit_pin_baseReg_, transmit_pin_bitmask_);
  200. }
  201. void HardwareSerial::setRX(uint8_t pin)
  202. {
  203. if (pin != hardware->rx_pins[rx_pin_index_].pin) {
  204. for (uint8_t rx_pin_new_index = 0; rx_pin_new_index < cnt_rx_pins; rx_pin_new_index++) {
  205. if (pin == hardware->rx_pins[rx_pin_new_index].pin) {
  206. // new pin - so lets maybe reset the old pin to INPUT? and then set new pin parameters
  207. // only change IO pins if done after begin has been called.
  208. if ((hardware->ccm_register & hardware->ccm_value)) {
  209. *(portConfigRegister(hardware->rx_pins[rx_pin_index_].pin)) = 5;
  210. // now set new pin info.
  211. *(portControlRegister(hardware->rx_pins[rx_pin_new_index].pin)) = IOMUXC_PAD_DSE(7) | IOMUXC_PAD_PKE | IOMUXC_PAD_PUE | IOMUXC_PAD_PUS(3) | IOMUXC_PAD_HYS;;
  212. *(portConfigRegister(hardware->rx_pins[rx_pin_new_index].pin)) = hardware->rx_pins[rx_pin_new_index].mux_val;
  213. if (hardware->rx_pins[rx_pin_new_index].select_input_register) {
  214. *(hardware->rx_pins[rx_pin_new_index].select_input_register) = hardware->rx_pins[rx_pin_new_index].select_val;
  215. }
  216. }
  217. rx_pin_index_ = rx_pin_new_index;
  218. break;
  219. }
  220. }
  221. }
  222. }
  223. void HardwareSerial::setTX(uint8_t pin, bool opendrain)
  224. {
  225. uint8_t tx_pin_new_index = tx_pin_index_;
  226. if (pin != hardware->tx_pins[tx_pin_index_].pin) {
  227. for (tx_pin_new_index = 0; tx_pin_new_index < cnt_tx_pins; tx_pin_new_index++) {
  228. if (pin == hardware->tx_pins[tx_pin_new_index].pin) {
  229. break;
  230. }
  231. }
  232. if (tx_pin_new_index == cnt_tx_pins) return; // not a new valid pid...
  233. }
  234. // turn on or off opendrain mode.
  235. // new pin - so lets maybe reset the old pin to INPUT? and then set new pin parameters
  236. if ((hardware->ccm_register & hardware->ccm_value)) { // only do if we are already active.
  237. if (tx_pin_new_index != tx_pin_index_) {
  238. *(portConfigRegister(hardware->tx_pins[tx_pin_index_].pin)) = 5;
  239. *(portConfigRegister(hardware->tx_pins[tx_pin_new_index].pin)) = hardware->tx_pins[tx_pin_new_index].mux_val;
  240. }
  241. }
  242. // now set new pin info.
  243. tx_pin_index_ = tx_pin_new_index;
  244. if (opendrain)
  245. *(portControlRegister(pin)) = IOMUXC_PAD_ODE | IOMUXC_PAD_DSE(3) | IOMUXC_PAD_SPEED(3);
  246. else
  247. *(portControlRegister(pin)) = IOMUXC_PAD_SRE | IOMUXC_PAD_DSE(3) | IOMUXC_PAD_SPEED(3);
  248. }
  249. bool HardwareSerial::attachRts(uint8_t pin)
  250. {
  251. if (!(hardware->ccm_register & hardware->ccm_value)) return 0;
  252. if (pin < CORE_NUM_DIGITAL) {
  253. rts_pin_baseReg_ = PIN_TO_BASEREG(pin);
  254. rts_pin_bitmask_ = PIN_TO_BITMASK(pin);
  255. pinMode(pin, OUTPUT);
  256. rts_assert();
  257. } else {
  258. rts_pin_baseReg_ = NULL;
  259. return 0;
  260. }
  261. return 1;
  262. }
  263. bool HardwareSerial::attachCts(uint8_t pin)
  264. {
  265. if (!(hardware->ccm_register & hardware->ccm_value)) return false;
  266. if ((pin != 0xff) && (pin == hardware->cts_pin)) {
  267. // Setup the IO pin as weak PULL down.
  268. *(portControlRegister(pin)) = IOMUXC_PAD_DSE(7) | IOMUXC_PAD_PKE | IOMUXC_PAD_PUE | IOMUXC_PAD_PUS(0) | IOMUXC_PAD_HYS;
  269. *(portConfigRegister(hardware->cts_pin)) = hardware->cts_mux_val;
  270. port->MODIR |= LPUART_MODIR_TXCTSE;
  271. return true;
  272. } else {
  273. port->MODIR &= ~LPUART_MODIR_TXCTSE;
  274. return false;
  275. }
  276. }
  277. void HardwareSerial::clear(void)
  278. {
  279. // BUGBUG:: deal with FIFO
  280. rx_buffer_head_ = rx_buffer_tail_;
  281. if (rts_pin_baseReg_) rts_assert();
  282. }
  283. int HardwareSerial::availableForWrite(void)
  284. {
  285. uint32_t head, tail;
  286. head = tx_buffer_head_;
  287. tail = tx_buffer_tail_;
  288. if (head >= tail) return tx_buffer_total_size_ - 1 - head + tail;
  289. return tail - head - 1;
  290. }
  291. int HardwareSerial::available(void)
  292. {
  293. uint32_t head, tail;
  294. head = rx_buffer_head_;
  295. tail = rx_buffer_tail_;
  296. if (head >= tail) return head - tail;
  297. return rx_buffer_total_size_ + head - tail;
  298. }
  299. void HardwareSerial::addStorageForRead(void *buffer, size_t length)
  300. {
  301. rx_buffer_storage_ = (BUFTYPE*)buffer;
  302. if (buffer) {
  303. rx_buffer_total_size_ = rx_buffer_total_size_ + length;
  304. } else {
  305. rx_buffer_total_size_ = rx_buffer_total_size_;
  306. }
  307. rts_low_watermark_ = rx_buffer_total_size_ - hardware->rts_low_watermark;
  308. rts_high_watermark_ = rx_buffer_total_size_ - hardware->rts_high_watermark;
  309. }
  310. void HardwareSerial::addStorageForWrite(void *buffer, size_t length)
  311. {
  312. tx_buffer_storage_ = (BUFTYPE*)buffer;
  313. if (buffer) {
  314. tx_buffer_total_size_ = tx_buffer_total_size_ + length;
  315. } else {
  316. tx_buffer_total_size_ = tx_buffer_total_size_;
  317. }
  318. }
  319. int HardwareSerial::peek(void)
  320. {
  321. uint32_t head, tail;
  322. head = rx_buffer_head_;
  323. tail = rx_buffer_tail_;
  324. if (head == tail) return -1;
  325. if (++tail >= rx_buffer_total_size_) tail = 0;
  326. if (tail < rx_buffer_size_) {
  327. return rx_buffer_[tail];
  328. } else {
  329. return rx_buffer_storage_[tail-rx_buffer_size_];
  330. }
  331. }
  332. int HardwareSerial::read(void)
  333. {
  334. uint32_t head, tail;
  335. int c;
  336. head = rx_buffer_head_;
  337. tail = rx_buffer_tail_;
  338. if (head == tail) return -1;
  339. if (++tail >= rx_buffer_total_size_) tail = 0;
  340. if (tail < rx_buffer_size_) {
  341. c = rx_buffer_[tail];
  342. } else {
  343. c = rx_buffer_storage_[tail-rx_buffer_size_];
  344. }
  345. rx_buffer_tail_ = tail;
  346. if (rts_pin_baseReg_) {
  347. uint32_t avail;
  348. if (head >= tail) avail = head - tail;
  349. else avail = rx_buffer_total_size_ + head - tail;
  350. if (avail <= rts_low_watermark_) rts_assert();
  351. }
  352. return c;
  353. }
  354. void HardwareSerial::flush(void)
  355. {
  356. while (transmitting_) yield(); // wait
  357. }
  358. size_t HardwareSerial::write(uint8_t c)
  359. {
  360. // use the 9 bit version (maybe 10 bit) do do the work.
  361. return write9bit(c);
  362. }
  363. size_t HardwareSerial::write9bit(uint32_t c)
  364. {
  365. uint32_t head, n;
  366. //digitalWrite(3, HIGH);
  367. //digitalWrite(5, HIGH);
  368. if (transmit_pin_baseReg_) DIRECT_WRITE_HIGH(transmit_pin_baseReg_, transmit_pin_bitmask_);
  369. head = tx_buffer_head_;
  370. if (++head >= tx_buffer_total_size_) head = 0;
  371. while (tx_buffer_tail_ == head) {
  372. int priority = nvic_execution_priority();
  373. if (priority <= hardware->irq_priority) {
  374. if ((port->STAT & LPUART_STAT_TDRE)) {
  375. uint32_t tail = tx_buffer_tail_;
  376. if (++tail >= tx_buffer_total_size_) tail = 0;
  377. if (tail < tx_buffer_size_) {
  378. n = tx_buffer_[tail];
  379. } else {
  380. n = tx_buffer_storage_[tail-tx_buffer_size_];
  381. }
  382. port->DATA = n;
  383. tx_buffer_tail_ = tail;
  384. }
  385. } else if (priority >= 256)
  386. {
  387. yield(); // wait
  388. }
  389. }
  390. //digitalWrite(5, LOW);
  391. //Serial.printf("WR %x %d %d %d %x %x\n", c, head, tx_buffer_size_, tx_buffer_total_size_, (uint32_t)tx_buffer_, (uint32_t)tx_buffer_storage_);
  392. if (head < tx_buffer_size_) {
  393. tx_buffer_[head] = c;
  394. } else {
  395. tx_buffer_storage_[head - tx_buffer_size_] = c;
  396. }
  397. __disable_irq();
  398. transmitting_ = 1;
  399. tx_buffer_head_ = head;
  400. port->CTRL |= LPUART_CTRL_TIE; // (may need to handle this issue)BITBAND_SET_BIT(LPUART0_CTRL, TIE_BIT);
  401. __enable_irq();
  402. //digitalWrite(3, LOW);
  403. return 1;
  404. }
  405. void HardwareSerial::IRQHandler()
  406. {
  407. //digitalWrite(4, HIGH);
  408. uint32_t head, tail, n;
  409. uint32_t ctrl;
  410. // See if we have stuff to read in.
  411. // Todo - Check idle.
  412. if (port->STAT & (LPUART_STAT_RDRF | LPUART_STAT_IDLE)) {
  413. // See how many bytes or pending.
  414. //digitalWrite(5, HIGH);
  415. uint8_t avail = (port->WATER >> 24) & 0x7;
  416. if (avail) {
  417. uint32_t newhead;
  418. head = rx_buffer_head_;
  419. tail = rx_buffer_tail_;
  420. do {
  421. n = port->DATA & 0x3ff; // Use only up to 10 bits of data
  422. newhead = head + 1;
  423. if (newhead >= rx_buffer_total_size_) newhead = 0;
  424. if (newhead != rx_buffer_tail_) {
  425. head = newhead;
  426. if (newhead < rx_buffer_size_) {
  427. rx_buffer_[head] = n;
  428. } else {
  429. rx_buffer_storage_[head-rx_buffer_size_] = n;
  430. }
  431. }
  432. } while (--avail > 0) ;
  433. rx_buffer_head_ = head;
  434. if (rts_pin_baseReg_) {
  435. uint32_t avail;
  436. if (head >= tail) avail = head - tail;
  437. else avail = rx_buffer_total_size_ + head - tail;
  438. if (avail >= rts_high_watermark_) rts_deassert();
  439. }
  440. }
  441. // If it was an idle status clear the idle
  442. if (port->STAT & LPUART_STAT_IDLE) {
  443. port->STAT |= LPUART_STAT_IDLE; // writing a 1 to idle should clear it.
  444. }
  445. //digitalWrite(5, LOW);
  446. }
  447. // See if we are transmitting and room in buffer.
  448. ctrl = port->CTRL;
  449. if ((ctrl & LPUART_CTRL_TIE) && (port->STAT & LPUART_STAT_TDRE))
  450. {
  451. //digitalWrite(3, HIGH);
  452. head = tx_buffer_head_;
  453. tail = tx_buffer_tail_;
  454. do {
  455. if (head == tail) break;
  456. if (++tail >= tx_buffer_total_size_) tail = 0;
  457. if (tail < tx_buffer_size_) {
  458. n = tx_buffer_[tail];
  459. } else {
  460. n = tx_buffer_storage_[tail-tx_buffer_size_];
  461. }
  462. port->DATA = n;
  463. } while (((port->WATER >> 8) & 0x7) < 4); // need to computer properly
  464. tx_buffer_tail_ = tail;
  465. if (head == tail) {
  466. port->CTRL &= ~LPUART_CTRL_TIE;
  467. port->CTRL |= LPUART_CTRL_TCIE; // Actually wondering if we can just leave this one on...
  468. }
  469. //digitalWrite(3, LOW);
  470. }
  471. if ((ctrl & LPUART_CTRL_TCIE) && (port->STAT & LPUART_STAT_TC))
  472. {
  473. transmitting_ = 0;
  474. if (transmit_pin_baseReg_) DIRECT_WRITE_LOW(transmit_pin_baseReg_, transmit_pin_bitmask_);
  475. port->CTRL &= ~LPUART_CTRL_TCIE;
  476. }
  477. //digitalWrite(4, LOW);
  478. }
  479. void HardwareSerial::processSerialEvents()
  480. {
  481. if (!serial_event_handlers_active) return; // bail quick if no one processing SerialEvents.
  482. uint8_t handlers_still_to_process = serial_event_handlers_active;
  483. for (uint8_t i = 0; i < 8; i++) {
  484. if (serial_event_handler_checks[i]) {
  485. (*serial_event_handler_checks[i])();
  486. if (--handlers_still_to_process == 0) return;
  487. }
  488. }
  489. }
  490. void HardwareSerial::enableSerialEvents()
  491. {
  492. if (!serial_event_handler_checks[hardware->serial_index]) {
  493. serial_event_handler_checks[hardware->serial_index] = hardware->serial_event_handler_check; // clear it out
  494. serial_event_handlers_active++;
  495. }
  496. }
  497. void HardwareSerial::disableSerialEvents()
  498. {
  499. if (serial_event_handler_checks[hardware->serial_index]) {
  500. serial_event_handler_checks[hardware->serial_index] = nullptr; // clear it out
  501. serial_event_handlers_active--;
  502. }
  503. }