My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

MarlinSerial.cpp 7.3KB

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