MarlinSerial.cpp 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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. // Test for a framing error.
  46. if (M_UCSRxA & (1<<M_FEx)) {
  47. // Characters received with the framing errors will be ignored.
  48. // Dummy register read (discard)
  49. (void)(*(char *)M_UDRx);
  50. } else {
  51. // Read the input register.
  52. unsigned char c = M_UDRx;
  53. store_char(c);
  54. }
  55. }
  56. #ifndef SNMM
  57. SIGNAL(USART2_RX_vect)
  58. {
  59. if (selectedSerialPort == 1) {
  60. // Test for a framing error.
  61. if (UCSR2A & (1<<FE2)) {
  62. // Characters received with the framing errors will be ignored.
  63. // Dummy register read (discard)
  64. (void)(*(char *)UDR2);
  65. } else {
  66. // Read the input register.
  67. unsigned char c = UDR2;
  68. store_char(c);
  69. }
  70. }
  71. }
  72. #endif
  73. #endif
  74. // Constructors ////////////////////////////////////////////////////////////////
  75. MarlinSerial::MarlinSerial()
  76. {
  77. }
  78. // Public Methods //////////////////////////////////////////////////////////////
  79. void MarlinSerial::begin(long baud)
  80. {
  81. uint16_t baud_setting;
  82. bool useU2X = true;
  83. #if F_CPU == 16000000UL && SERIAL_PORT == 0
  84. // hard-coded exception for compatibility with the bootloader shipped
  85. // with the Duemilanove and previous boards and the firmware on the 8U2
  86. // on the Uno and Mega 2560.
  87. if (baud == 57600) {
  88. useU2X = false;
  89. }
  90. #endif
  91. // set up the first (original serial port)
  92. if (useU2X) {
  93. M_UCSRxA = 1 << M_U2Xx;
  94. baud_setting = (F_CPU / 4 / baud - 1) / 2;
  95. } else {
  96. M_UCSRxA = 0;
  97. baud_setting = (F_CPU / 8 / baud - 1) / 2;
  98. }
  99. // assign the baud_setting, a.k.a. ubbr (USART Baud Rate Register)
  100. M_UBRRxH = baud_setting >> 8;
  101. M_UBRRxL = baud_setting;
  102. sbi(M_UCSRxB, M_RXENx);
  103. sbi(M_UCSRxB, M_TXENx);
  104. sbi(M_UCSRxB, M_RXCIEx);
  105. #ifndef SNMM
  106. if (selectedSerialPort == 1) { //set up also the second serial port
  107. if (useU2X) {
  108. UCSR2A = 1 << U2X2;
  109. baud_setting = (F_CPU / 4 / baud - 1) / 2;
  110. } else {
  111. UCSR2A = 0;
  112. baud_setting = (F_CPU / 8 / baud - 1) / 2;
  113. }
  114. // assign the baud_setting, a.k.a. ubbr (USART Baud Rate Register)
  115. UBRR2H = baud_setting >> 8;
  116. UBRR2L = baud_setting;
  117. sbi(UCSR2B, RXEN2);
  118. sbi(UCSR2B, TXEN2);
  119. sbi(UCSR2B, RXCIE2);
  120. }
  121. #endif
  122. }
  123. void MarlinSerial::end()
  124. {
  125. cbi(M_UCSRxB, M_RXENx);
  126. cbi(M_UCSRxB, M_TXENx);
  127. cbi(M_UCSRxB, M_RXCIEx);
  128. #ifndef SNMM
  129. cbi(UCSR2B, RXEN2);
  130. cbi(UCSR2B, TXEN2);
  131. cbi(UCSR2B, RXCIE2);
  132. #endif
  133. }
  134. int MarlinSerial::peek(void)
  135. {
  136. if (rx_buffer.head == rx_buffer.tail) {
  137. return -1;
  138. } else {
  139. return rx_buffer.buffer[rx_buffer.tail];
  140. }
  141. }
  142. int MarlinSerial::read(void)
  143. {
  144. // if the head isn't ahead of the tail, we don't have any characters
  145. if (rx_buffer.head == rx_buffer.tail) {
  146. return -1;
  147. } else {
  148. unsigned char c = rx_buffer.buffer[rx_buffer.tail];
  149. rx_buffer.tail = (unsigned int)(rx_buffer.tail + 1) % RX_BUFFER_SIZE;
  150. return c;
  151. }
  152. }
  153. void MarlinSerial::flush()
  154. {
  155. // don't reverse this or there may be problems if the RX interrupt
  156. // occurs after reading the value of rx_buffer_head but before writing
  157. // the value to rx_buffer_tail; the previous value of rx_buffer_head
  158. // may be written to rx_buffer_tail, making it appear as if the buffer
  159. // don't reverse this or there may be problems if the RX interrupt
  160. // occurs after reading the value of rx_buffer_head but before writing
  161. // the value to rx_buffer_tail; the previous value of rx_buffer_head
  162. // may be written to rx_buffer_tail, making it appear as if the buffer
  163. // were full, not empty.
  164. rx_buffer.head = rx_buffer.tail;
  165. }
  166. /// imports from print.h
  167. void MarlinSerial::print(char c, int base)
  168. {
  169. print((long) c, base);
  170. }
  171. void MarlinSerial::print(unsigned char b, int base)
  172. {
  173. print((unsigned long) b, base);
  174. }
  175. void MarlinSerial::print(int n, int base)
  176. {
  177. print((long) n, base);
  178. }
  179. void MarlinSerial::print(unsigned int n, int base)
  180. {
  181. print((unsigned long) n, base);
  182. }
  183. void MarlinSerial::print(long n, int base)
  184. {
  185. if (base == 0) {
  186. write(n);
  187. } else if (base == 10) {
  188. if (n < 0) {
  189. print('-');
  190. n = -n;
  191. }
  192. printNumber(n, 10);
  193. } else {
  194. printNumber(n, base);
  195. }
  196. }
  197. void MarlinSerial::print(unsigned long n, int base)
  198. {
  199. if (base == 0) write(n);
  200. else printNumber(n, base);
  201. }
  202. void MarlinSerial::print(double n, int digits)
  203. {
  204. printFloat(n, digits);
  205. }
  206. void MarlinSerial::println(void)
  207. {
  208. print('\r');
  209. print('\n');
  210. }
  211. void MarlinSerial::println(const String &s)
  212. {
  213. print(s);
  214. println();
  215. }
  216. void MarlinSerial::println(const char c[])
  217. {
  218. print(c);
  219. println();
  220. }
  221. void MarlinSerial::println(char c, int base)
  222. {
  223. print(c, base);
  224. println();
  225. }
  226. void MarlinSerial::println(unsigned char b, int base)
  227. {
  228. print(b, base);
  229. println();
  230. }
  231. void MarlinSerial::println(int n, int base)
  232. {
  233. print(n, base);
  234. println();
  235. }
  236. void MarlinSerial::println(unsigned int n, int base)
  237. {
  238. print(n, base);
  239. println();
  240. }
  241. void MarlinSerial::println(long n, int base)
  242. {
  243. print(n, base);
  244. println();
  245. }
  246. void MarlinSerial::println(unsigned long n, int base)
  247. {
  248. print(n, base);
  249. println();
  250. }
  251. void MarlinSerial::println(double n, int digits)
  252. {
  253. print(n, digits);
  254. println();
  255. }
  256. // Private Methods /////////////////////////////////////////////////////////////
  257. void MarlinSerial::printNumber(unsigned long n, uint8_t base)
  258. {
  259. unsigned char buf[8 * sizeof(long)]; // Assumes 8-bit chars.
  260. unsigned long i = 0;
  261. if (n == 0) {
  262. print('0');
  263. return;
  264. }
  265. while (n > 0) {
  266. buf[i++] = n % base;
  267. n /= base;
  268. }
  269. for (; i > 0; i--)
  270. print((char) (buf[i - 1] < 10 ?
  271. '0' + buf[i - 1] :
  272. 'A' + buf[i - 1] - 10));
  273. }
  274. void MarlinSerial::printFloat(double number, uint8_t digits)
  275. {
  276. // Handle negative numbers
  277. if (number < 0.0)
  278. {
  279. print('-');
  280. number = -number;
  281. }
  282. // Round correctly so that print(1.999, 2) prints as "2.00"
  283. double rounding = 0.5;
  284. for (uint8_t i=0; i<digits; ++i)
  285. rounding /= 10.0;
  286. number += rounding;
  287. // Extract the integer part of the number and print it
  288. unsigned long int_part = (unsigned long)number;
  289. double remainder = number - (double)int_part;
  290. print(int_part);
  291. // Print the decimal point, but only if there are digits beyond
  292. if (digits > 0)
  293. print(".");
  294. // Extract digits from the remainder one at a time
  295. while (digits-- > 0)
  296. {
  297. remainder *= 10.0;
  298. int toPrint = int(remainder);
  299. print(toPrint);
  300. remainder -= toPrint;
  301. }
  302. }
  303. // Preinstantiate Objects //////////////////////////////////////////////////////
  304. MarlinSerial MSerial;
  305. #endif // whole file
  306. #endif // !AT90USB
  307. // For AT90USB targets use the UART for BT interfacing
  308. #if defined(AT90USB) && defined (BTENABLED)
  309. HardwareSerial bt;
  310. #endif