My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MarlinSerial.cpp 8.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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 <stdlib.h>
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include <inttypes.h>
  22. #include "wiring.h"
  23. #include "wiring_private.h"
  24. // this next line disables the entire HardwareSerial.cpp,
  25. // this is so I can support Attiny series and any other chip without a uart
  26. #if defined(UBRRH) || defined(UBRR0H) || defined(UBRR1H) || defined(UBRR2H) || defined(UBRR3H)
  27. #include "MarlinSerial.h"
  28. #if defined(UBRRH) || defined(UBRR0H)
  29. ring_buffer rx_buffer = { { 0 }, 0, 0 };
  30. #endif
  31. inline void store_char(unsigned char c)
  32. {
  33. int i = (unsigned int)(rx_buffer.head + 1) % RX_BUFFER_SIZE;
  34. // if we should be storing the received character into the location
  35. // just before the tail (meaning that the head would advance to the
  36. // current location of the tail), we're about to overflow the buffer
  37. // and so we don't write the character or advance the head.
  38. if (i != rx_buffer.tail) {
  39. rx_buffer.buffer[rx_buffer.head] = c;
  40. rx_buffer.head = i;
  41. }
  42. }
  43. //#elif defined(SIG_USART_RECV)
  44. #if defined(USART0_RX_vect)
  45. // fixed by Mark Sproul this is on the 644/644p
  46. //SIGNAL(SIG_USART_RECV)
  47. SIGNAL(USART0_RX_vect)
  48. {
  49. #if defined(UDR0)
  50. unsigned char c = UDR0;
  51. #elif defined(UDR)
  52. unsigned char c = UDR; // atmega8, atmega32
  53. #else
  54. #error UDR not defined
  55. #endif
  56. store_char(c);
  57. }
  58. #endif
  59. // Constructors ////////////////////////////////////////////////////////////////
  60. MarlinSerial::MarlinSerial(
  61. volatile uint8_t *ubrrh, volatile uint8_t *ubrrl,
  62. volatile uint8_t *ucsra, volatile uint8_t *ucsrb,
  63. volatile uint8_t *udr,
  64. uint8_t rxen, uint8_t txen, uint8_t rxcie, uint8_t udre, uint8_t u2x)
  65. {
  66. _ubrrh = ubrrh;
  67. _ubrrl = ubrrl;
  68. _ucsra = ucsra;
  69. _ucsrb = ucsrb;
  70. _udr = udr;
  71. _rxen = rxen;
  72. _txen = txen;
  73. _rxcie = rxcie;
  74. _udre = udre;
  75. _u2x = u2x;
  76. }
  77. // Public Methods //////////////////////////////////////////////////////////////
  78. void MarlinSerial::begin(long baud)
  79. {
  80. uint16_t baud_setting;
  81. bool use_u2x = true;
  82. #if F_CPU == 16000000UL
  83. // hardcoded exception for compatibility with the bootloader shipped
  84. // with the Duemilanove and previous boards and the firmware on the 8U2
  85. // on the Uno and Mega 2560.
  86. if (baud == 57600) {
  87. use_u2x = false;
  88. }
  89. #endif
  90. if (use_u2x) {
  91. *_ucsra = 1 << _u2x;
  92. baud_setting = (F_CPU / 4 / baud - 1) / 2;
  93. } else {
  94. *_ucsra = 0;
  95. baud_setting = (F_CPU / 8 / baud - 1) / 2;
  96. }
  97. // assign the baud_setting, a.k.a. ubbr (USART Baud Rate Register)
  98. *_ubrrh = baud_setting >> 8;
  99. *_ubrrl = baud_setting;
  100. sbi(*_ucsrb, _rxen);
  101. sbi(*_ucsrb, _txen);
  102. sbi(*_ucsrb, _rxcie);
  103. }
  104. void MarlinSerial::end()
  105. {
  106. cbi(*_ucsrb, _rxen);
  107. cbi(*_ucsrb, _txen);
  108. cbi(*_ucsrb, _rxcie);
  109. }
  110. int MarlinSerial::peek(void)
  111. {
  112. if (rx_buffer.head == rx_buffer.tail) {
  113. return -1;
  114. } else {
  115. return rx_buffer.buffer[rx_buffer.tail];
  116. }
  117. }
  118. int MarlinSerial::read(void)
  119. {
  120. // if the head isn't ahead of the tail, we don't have any characters
  121. if (rx_buffer.head == rx_buffer.tail) {
  122. return -1;
  123. } else {
  124. unsigned char c = rx_buffer.buffer[rx_buffer.tail];
  125. rx_buffer.tail = (unsigned int)(rx_buffer.tail + 1) % RX_BUFFER_SIZE;
  126. return c;
  127. }
  128. }
  129. void MarlinSerial::flush()
  130. {
  131. // don't reverse this or there may be problems if the RX interrupt
  132. // occurs after reading the value of rx_buffer_head but before writing
  133. // the value to rx_buffer_tail; the previous value of rx_buffer_head
  134. // may be written to rx_buffer_tail, making it appear as if the buffer
  135. // don't reverse this or there may be problems if the RX interrupt
  136. // occurs after reading the value of rx_buffer_head but before writing
  137. // the value to rx_buffer_tail; the previous value of rx_buffer_head
  138. // may be written to rx_buffer_tail, making it appear as if the buffer
  139. // were full, not empty.
  140. rx_buffer.head = rx_buffer.tail;
  141. }
  142. /// imports from print.h
  143. /* default implementation: may be overridden */
  144. void MarlinSerial::write(const char *str)
  145. {
  146. while (*str)
  147. write(*str++);
  148. }
  149. /* default implementation: may be overridden */
  150. void MarlinSerial::write(const uint8_t *buffer, size_t size)
  151. {
  152. while (size--)
  153. write(*buffer++);
  154. }
  155. void MarlinSerial::print(const String &s)
  156. {
  157. for (int i = 0; i < s.length(); i++) {
  158. write(s[i]);
  159. }
  160. }
  161. void MarlinSerial::print(const char str[])
  162. {
  163. write(str);
  164. }
  165. void MarlinSerial::print(char c, int base)
  166. {
  167. print((long) c, base);
  168. }
  169. void MarlinSerial::print(unsigned char b, int base)
  170. {
  171. print((unsigned long) b, base);
  172. }
  173. void MarlinSerial::print(int n, int base)
  174. {
  175. print((long) n, base);
  176. }
  177. void MarlinSerial::print(unsigned int n, int base)
  178. {
  179. print((unsigned long) n, base);
  180. }
  181. void MarlinSerial::print(long n, int base)
  182. {
  183. if (base == 0) {
  184. write(n);
  185. } else if (base == 10) {
  186. if (n < 0) {
  187. print('-');
  188. n = -n;
  189. }
  190. printNumber(n, 10);
  191. } else {
  192. printNumber(n, base);
  193. }
  194. }
  195. void MarlinSerial::print(unsigned long n, int base)
  196. {
  197. if (base == 0) write(n);
  198. else printNumber(n, base);
  199. }
  200. void MarlinSerial::print(double n, int digits)
  201. {
  202. printFloat(n, digits);
  203. }
  204. void MarlinSerial::println(void)
  205. {
  206. print('\r');
  207. print('\n');
  208. }
  209. void MarlinSerial::println(const String &s)
  210. {
  211. print(s);
  212. println();
  213. }
  214. void MarlinSerial::println(const char c[])
  215. {
  216. print(c);
  217. println();
  218. }
  219. void MarlinSerial::println(char c, int base)
  220. {
  221. print(c, base);
  222. println();
  223. }
  224. void MarlinSerial::println(unsigned char b, int base)
  225. {
  226. print(b, base);
  227. println();
  228. }
  229. void MarlinSerial::println(int n, int base)
  230. {
  231. print(n, base);
  232. println();
  233. }
  234. void MarlinSerial::println(unsigned int n, int base)
  235. {
  236. print(n, base);
  237. println();
  238. }
  239. void MarlinSerial::println(long n, int base)
  240. {
  241. print(n, base);
  242. println();
  243. }
  244. void MarlinSerial::println(unsigned long n, int base)
  245. {
  246. print(n, base);
  247. println();
  248. }
  249. void MarlinSerial::println(double n, int digits)
  250. {
  251. print(n, digits);
  252. println();
  253. }
  254. // Private Methods /////////////////////////////////////////////////////////////
  255. void MarlinSerial::printNumber(unsigned long n, uint8_t base)
  256. {
  257. unsigned char buf[8 * sizeof(long)]; // Assumes 8-bit chars.
  258. unsigned long i = 0;
  259. if (n == 0) {
  260. print('0');
  261. return;
  262. }
  263. while (n > 0) {
  264. buf[i++] = n % base;
  265. n /= base;
  266. }
  267. for (; i > 0; i--)
  268. print((char) (buf[i - 1] < 10 ?
  269. '0' + buf[i - 1] :
  270. 'A' + buf[i - 1] - 10));
  271. }
  272. void MarlinSerial::printFloat(double number, uint8_t digits)
  273. {
  274. // Handle negative numbers
  275. if (number < 0.0)
  276. {
  277. print('-');
  278. number = -number;
  279. }
  280. // Round correctly so that print(1.999, 2) prints as "2.00"
  281. double rounding = 0.5;
  282. for (uint8_t i=0; i<digits; ++i)
  283. rounding /= 10.0;
  284. number += rounding;
  285. // Extract the integer part of the number and print it
  286. unsigned long int_part = (unsigned long)number;
  287. double remainder = number - (double)int_part;
  288. print(int_part);
  289. // Print the decimal point, but only if there are digits beyond
  290. if (digits > 0)
  291. print(".");
  292. // Extract digits from the remainder one at a time
  293. while (digits-- > 0)
  294. {
  295. remainder *= 10.0;
  296. int toPrint = int(remainder);
  297. print(toPrint);
  298. remainder -= toPrint;
  299. }
  300. }
  301. // Preinstantiate Objects //////////////////////////////////////////////////////
  302. #if defined(UBRR0H) && defined(UBRR0L)
  303. MarlinSerial MSerial( &UBRR0H, &UBRR0L, &UCSR0A, &UCSR0B, &UDR0, RXEN0, TXEN0, RXCIE0, UDRE0, U2X0);
  304. #else
  305. #error no serial port defined (port 0)
  306. #endif
  307. #endif // whole file