MarlinSerial.cpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. /*
  2. HardwareSerial.cpp - Hardware serial library for Wiring
  3. Copyright (c) 2006 Nicholas Zambetti. All right reserved.
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  15. Modified 23 November 2006 by David A. Mellis
  16. Modified 28 September 2010 by Mark Sproul
  17. */
  18. #include "Marlin.h"
  19. #include "MarlinSerial.h"
  20. #ifndef AT90USB
  21. // this next line disables the entire HardwareSerial.cpp,
  22. // this is so I can support Attiny series and any other chip without a UART
  23. #if defined(UBRRH) || defined(UBRR0H) || defined(UBRR1H) || defined(UBRR2H) || defined(UBRR3H)
  24. #if UART_PRESENT(SERIAL_PORT)
  25. ring_buffer rx_buffer = { { 0 }, 0, 0 };
  26. #endif
  27. FORCE_INLINE void store_char(unsigned char c)
  28. {
  29. int i = (unsigned int)(rx_buffer.head + 1) % RX_BUFFER_SIZE;
  30. // if we should be storing the received character into the location
  31. // just before the tail (meaning that the head would advance to the
  32. // current location of the tail), we're about to overflow the buffer
  33. // and so we don't write the character or advance the head.
  34. if (i != rx_buffer.tail) {
  35. rx_buffer.buffer[rx_buffer.head] = c;
  36. rx_buffer.head = i;
  37. }
  38. }
  39. //#elif defined(SIG_USART_RECV)
  40. #if defined(M_USARTx_RX_vect)
  41. // fixed by Mark Sproul this is on the 644/644p
  42. //SIGNAL(SIG_USART_RECV)
  43. SIGNAL(M_USARTx_RX_vect)
  44. {
  45. unsigned char c = M_UDRx;
  46. store_char(c);
  47. }
  48. #endif
  49. // Constructors ////////////////////////////////////////////////////////////////
  50. MarlinSerial::MarlinSerial()
  51. {
  52. }
  53. // Public Methods //////////////////////////////////////////////////////////////
  54. void MarlinSerial::begin(long baud)
  55. {
  56. uint16_t baud_setting;
  57. bool useU2X = true;
  58. #if F_CPU == 16000000UL && SERIAL_PORT == 0
  59. // hard-coded exception for compatibility with the bootloader shipped
  60. // with the Duemilanove and previous boards and the firmware on the 8U2
  61. // on the Uno and Mega 2560.
  62. if (baud == 57600) {
  63. useU2X = false;
  64. }
  65. #endif
  66. if (useU2X) {
  67. M_UCSRxA = 1 << M_U2Xx;
  68. baud_setting = (F_CPU / 4 / baud - 1) / 2;
  69. } else {
  70. M_UCSRxA = 0;
  71. baud_setting = (F_CPU / 8 / baud - 1) / 2;
  72. }
  73. // assign the baud_setting, a.k.a. ubbr (USART Baud Rate Register)
  74. M_UBRRxH = baud_setting >> 8;
  75. M_UBRRxL = baud_setting;
  76. sbi(M_UCSRxB, M_RXENx);
  77. sbi(M_UCSRxB, M_TXENx);
  78. sbi(M_UCSRxB, M_RXCIEx);
  79. }
  80. void MarlinSerial::end()
  81. {
  82. cbi(M_UCSRxB, M_RXENx);
  83. cbi(M_UCSRxB, M_TXENx);
  84. cbi(M_UCSRxB, M_RXCIEx);
  85. }
  86. int MarlinSerial::peek(void)
  87. {
  88. if (rx_buffer.head == rx_buffer.tail) {
  89. return -1;
  90. } else {
  91. return rx_buffer.buffer[rx_buffer.tail];
  92. }
  93. }
  94. int MarlinSerial::read(void)
  95. {
  96. // if the head isn't ahead of the tail, we don't have any characters
  97. if (rx_buffer.head == rx_buffer.tail) {
  98. return -1;
  99. } else {
  100. unsigned char c = rx_buffer.buffer[rx_buffer.tail];
  101. rx_buffer.tail = (unsigned int)(rx_buffer.tail + 1) % RX_BUFFER_SIZE;
  102. return c;
  103. }
  104. }
  105. void MarlinSerial::flush()
  106. {
  107. // don't reverse this or there may be problems if the RX interrupt
  108. // occurs after reading the value of rx_buffer_head but before writing
  109. // the value to rx_buffer_tail; the previous value of rx_buffer_head
  110. // may be written to rx_buffer_tail, making it appear as if the buffer
  111. // don't reverse this or there may be problems if the RX interrupt
  112. // occurs after reading the value of rx_buffer_head but before writing
  113. // the value to rx_buffer_tail; the previous value of rx_buffer_head
  114. // may be written to rx_buffer_tail, making it appear as if the buffer
  115. // were full, not empty.
  116. rx_buffer.head = rx_buffer.tail;
  117. }
  118. /// imports from print.h
  119. void MarlinSerial::print(char c, int base)
  120. {
  121. print((long) c, base);
  122. }
  123. void MarlinSerial::print(unsigned char b, int base)
  124. {
  125. print((unsigned long) b, base);
  126. }
  127. void MarlinSerial::print(int n, int base)
  128. {
  129. print((long) n, base);
  130. }
  131. void MarlinSerial::print(unsigned int n, int base)
  132. {
  133. print((unsigned long) n, base);
  134. }
  135. void MarlinSerial::print(long n, int base)
  136. {
  137. if (base == 0) {
  138. write(n);
  139. } else if (base == 10) {
  140. if (n < 0) {
  141. print('-');
  142. n = -n;
  143. }
  144. printNumber(n, 10);
  145. } else {
  146. printNumber(n, base);
  147. }
  148. }
  149. void MarlinSerial::print(unsigned long n, int base)
  150. {
  151. if (base == 0) write(n);
  152. else printNumber(n, base);
  153. }
  154. void MarlinSerial::print(double n, int digits)
  155. {
  156. printFloat(n, digits);
  157. }
  158. void MarlinSerial::println(void)
  159. {
  160. print('\r');
  161. print('\n');
  162. }
  163. void MarlinSerial::println(const String &s)
  164. {
  165. print(s);
  166. println();
  167. }
  168. void MarlinSerial::println(const char c[])
  169. {
  170. print(c);
  171. println();
  172. }
  173. void MarlinSerial::println(char c, int base)
  174. {
  175. print(c, base);
  176. println();
  177. }
  178. void MarlinSerial::println(unsigned char b, int base)
  179. {
  180. print(b, base);
  181. println();
  182. }
  183. void MarlinSerial::println(int n, int base)
  184. {
  185. print(n, base);
  186. println();
  187. }
  188. void MarlinSerial::println(unsigned int n, int base)
  189. {
  190. print(n, base);
  191. println();
  192. }
  193. void MarlinSerial::println(long n, int base)
  194. {
  195. print(n, base);
  196. println();
  197. }
  198. void MarlinSerial::println(unsigned long n, int base)
  199. {
  200. print(n, base);
  201. println();
  202. }
  203. void MarlinSerial::println(double n, int digits)
  204. {
  205. print(n, digits);
  206. println();
  207. }
  208. // Private Methods /////////////////////////////////////////////////////////////
  209. void MarlinSerial::printNumber(unsigned long n, uint8_t base)
  210. {
  211. unsigned char buf[8 * sizeof(long)]; // Assumes 8-bit chars.
  212. unsigned long i = 0;
  213. if (n == 0) {
  214. print('0');
  215. return;
  216. }
  217. while (n > 0) {
  218. buf[i++] = n % base;
  219. n /= base;
  220. }
  221. for (; i > 0; i--)
  222. print((char) (buf[i - 1] < 10 ?
  223. '0' + buf[i - 1] :
  224. 'A' + buf[i - 1] - 10));
  225. }
  226. void MarlinSerial::printFloat(double number, uint8_t digits)
  227. {
  228. // Handle negative numbers
  229. if (number < 0.0)
  230. {
  231. print('-');
  232. number = -number;
  233. }
  234. // Round correctly so that print(1.999, 2) prints as "2.00"
  235. double rounding = 0.5;
  236. for (uint8_t i=0; i<digits; ++i)
  237. rounding /= 10.0;
  238. number += rounding;
  239. // Extract the integer part of the number and print it
  240. unsigned long int_part = (unsigned long)number;
  241. double remainder = number - (double)int_part;
  242. print(int_part);
  243. // Print the decimal point, but only if there are digits beyond
  244. if (digits > 0)
  245. print(".");
  246. // Extract digits from the remainder one at a time
  247. while (digits-- > 0)
  248. {
  249. remainder *= 10.0;
  250. int toPrint = int(remainder);
  251. print(toPrint);
  252. remainder -= toPrint;
  253. }
  254. }
  255. // Preinstantiate Objects //////////////////////////////////////////////////////
  256. MarlinSerial MSerial;
  257. #endif // whole file
  258. #endif // !AT90USB
  259. // For AT90USB targets use the UART for BT interfacing
  260. #if defined(AT90USB) && defined (BTENABLED)
  261. HardwareSerial bt;
  262. #endif