Merge pull request #907 from lordofhyphens/deltagrid_cartesian
[clinton/Smoothieware.git] / src / libs / USBDevice / USBSerial / USBSerial.cpp
1 /* Copyright (c) 2010-2011 mbed.org, MIT License
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
4 * and associated documentation files (the "Software"), to deal in the Software without
5 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
6 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
7 * Software is furnished to do so, subject to the following conditions:
8 *
9 * The above copyright notice and this permission notice shall be included in all copies or
10 * substantial portions of the Software.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17 */
18
19 #include <cstdint>
20 #include <cstdio>
21
22 #include "USBSerial.h"
23
24 #include "libs/Kernel.h"
25 #include "libs/SerialMessage.h"
26 #include "StreamOutputPool.h"
27
28 // extern void setled(int, bool);
29 #define setled(a, b) do {} while (0)
30
31 #define iprintf(...) do { } while (0)
32
33 USBSerial::USBSerial(USB *u): USBCDC(u), rxbuf(256 + 8), txbuf(128 + 8)
34 {
35 usb = u;
36 nl_in_rx = 0;
37 attach = attached = false;
38 flush_to_nl = false;
39 halt_flag = false;
40 query_flag = false;
41 last_char_was_dollar = false;
42 }
43
44 void USBSerial::ensure_tx_space(int space)
45 {
46 while (txbuf.free() < space) {
47 usb->endpointSetInterrupt(CDC_BulkIn.bEndpointAddress, true);
48 usb->usbisr();
49 }
50 }
51
52 int USBSerial::_putc(int c)
53 {
54 if (!attached)
55 return 1;
56 ensure_tx_space(1);
57 txbuf.queue(c);
58
59 usb->endpointSetInterrupt(CDC_BulkIn.bEndpointAddress, true);
60 return 1;
61 }
62
63 int USBSerial::_getc()
64 {
65 if (!attached)
66 return 0;
67 uint8_t c = 0;
68 setled(4, 1); while (rxbuf.isEmpty()); setled(4, 0);
69 rxbuf.dequeue(&c);
70 if (rxbuf.free() == MAX_PACKET_SIZE_EPBULK) {
71 usb->endpointSetInterrupt(CDC_BulkOut.bEndpointAddress, true);
72 iprintf("rxbuf has room for another packet, interrupt enabled\n");
73 } else if ((rxbuf.free() < MAX_PACKET_SIZE_EPBULK) && (nl_in_rx == 0)) {
74 // handle potential deadlock where a short line, and the beginning of a very long line are bundled in one usb packet
75 rxbuf.flush();
76 flush_to_nl = true;
77
78 usb->endpointSetInterrupt(CDC_BulkOut.bEndpointAddress, true);
79 iprintf("rxbuf has room for another packet, interrupt enabled\n");
80 }
81 if (nl_in_rx > 0)
82 if (c == '\n' || c == '\r')
83 nl_in_rx--;
84
85 return c;
86 }
87
88 int USBSerial::puts(const char *str)
89 {
90 if (!attached)
91 return strlen(str);
92 int i = 0;
93 while (*str) {
94 ensure_tx_space(1);
95 txbuf.queue(*str);
96 if ((txbuf.available() % 64) == 0)
97 usb->endpointSetInterrupt(CDC_BulkIn.bEndpointAddress, true);
98 i++;
99 str++;
100 }
101 usb->endpointSetInterrupt(CDC_BulkIn.bEndpointAddress, true);
102 return i;
103 }
104
105 uint16_t USBSerial::writeBlock(const uint8_t * buf, uint16_t size)
106 {
107 if (!attached)
108 return size;
109 if (size > txbuf.free()) {
110 size = txbuf.free();
111 }
112 if (size > 0) {
113 for (uint8_t i = 0; i < size; i++) {
114 txbuf.queue(buf[i]);
115 }
116 usb->endpointSetInterrupt(CDC_BulkIn.bEndpointAddress, true);
117 }
118 return size;
119 }
120
121 bool USBSerial::USBEvent_EPIn(uint8_t bEP, uint8_t bEPStatus)
122 {
123 /*
124 * Called in ISR context
125 */
126
127 // static bool needToSendNull = false;
128
129 bool r = true;
130
131 if (bEP != CDC_BulkIn.bEndpointAddress)
132 return false;
133
134 iprintf("USBSerial:EpIn: 0x%02X\n", bEPStatus);
135
136 uint8_t b[MAX_PACKET_SIZE_EPBULK];
137
138 int l = txbuf.available();
139 if (l > 0) {
140 if (l > MAX_PACKET_SIZE_EPBULK)
141 l = MAX_PACKET_SIZE_EPBULK;
142 int i;
143 for (i = 0; i < l; i++) {
144 txbuf.dequeue(&b[i]);
145 }
146 send(b, l);
147 if (txbuf.available() == 0)
148 r = false;
149 } else {
150 r = false;
151 }
152 iprintf("USBSerial:EpIn Complete\n");
153 return r;
154 }
155
156 bool USBSerial::USBEvent_EPOut(uint8_t bEP, uint8_t bEPStatus)
157 {
158 /*
159 * Called in ISR context
160 */
161
162 bool r = true;
163
164 iprintf("USBSerial:EpOut\n");
165 if (bEP != CDC_BulkOut.bEndpointAddress)
166 return false;
167
168 if (rxbuf.free() < MAX_PACKET_SIZE_EPBULK) {
169 // usb->endpointSetInterrupt(bEP, false);
170 return false;
171 }
172
173 uint8_t c[MAX_PACKET_SIZE_EPBULK];
174 uint32_t size = 64;
175
176 //we read the packet received and put it on the circular buffer
177 readEP(c, &size);
178 iprintf("Read %ld bytes:\n\t", size);
179 for (uint8_t i = 0; i < size; i++) {
180 if(c[i] == 'X' - 'A' + 1) { // ^X
181 THEKERNEL->set_feed_hold(false); // required to free stuff up
182 halt_flag = true;
183 continue;
184 }
185
186 if(c[i] == '?') { // ?
187 query_flag = true;
188 continue;
189 }
190
191 if(THEKERNEL->is_grbl_mode()) {
192 if(c[i] == '!') { // safe pause
193 THEKERNEL->set_feed_hold(true);
194 continue;
195 }
196
197 if(c[i] == '~') { // safe resume
198 THEKERNEL->set_feed_hold(false);
199 continue;
200 }
201 if(last_char_was_dollar && (c[i] == 'X' || c[i] == 'H')) {
202 // we need to do this otherwise $X/$H won't work if there was a feed hold like when stop is clicked in bCNC
203 THEKERNEL->set_feed_hold(false);
204 }
205 }
206
207 last_char_was_dollar = (c[i] == '$');
208
209 if (flush_to_nl == false)
210 rxbuf.queue(c[i]);
211
212 // if (c[i] >= 32 && c[i] < 128)
213 // {
214 // iprintf("%c", c[i]);
215 // }
216 // else
217 // {
218 // iprintf("\\x%02X", c[i]);
219 // }
220
221 if (c[i] == '\n' || c[i] == '\r') {
222 if (flush_to_nl)
223 flush_to_nl = false;
224 else
225 nl_in_rx++;
226 } else if (rxbuf.isFull() && (nl_in_rx == 0)) {
227 // to avoid a deadlock with very long lines, we must dump the buffer
228 // and continue flushing to the next newline
229 rxbuf.flush();
230 flush_to_nl = true;
231 }
232 }
233 iprintf("\nQueued, %d empty\n", rxbuf.free());
234
235 if (rxbuf.free() < MAX_PACKET_SIZE_EPBULK) {
236 // if buffer is full, stall endpoint, do not accept more data
237 r = false;
238
239 if (nl_in_rx == 0) {
240 // we have to check for long line deadlock here too
241 flush_to_nl = true;
242 rxbuf.flush();
243
244 // and since our buffer is empty, we can accept more data
245 r = true;
246 }
247 }
248
249 usb->readStart(CDC_BulkOut.bEndpointAddress, MAX_PACKET_SIZE_EPBULK);
250 iprintf("USBSerial:EpOut Complete\n");
251 return r;
252 }
253
254 uint8_t USBSerial::available()
255 {
256 return rxbuf.available();
257 }
258
259 bool USBSerial::ready()
260 {
261 return rxbuf.available();
262 }
263
264 void USBSerial::on_module_loaded()
265 {
266 this->register_for_event(ON_MAIN_LOOP);
267 this->register_for_event(ON_IDLE);
268 }
269
270 void USBSerial::on_idle(void *argument)
271 {
272 if(halt_flag) {
273 halt_flag = false;
274 THEKERNEL->call_event(ON_HALT, nullptr);
275 if(THEKERNEL->is_grbl_mode()) {
276 puts("ALARM:Abort during cycle\r\n");
277 } else {
278 puts("HALTED, M999 or $X to exit HALT state\r\n");
279 }
280 rxbuf.flush(); // flush the recieve buffer, hopefully upstream has stopped sending
281 nl_in_rx = 0;
282 }
283
284 if(query_flag) {
285 query_flag = false;
286 puts(THEKERNEL->get_query_string().c_str());
287 }
288
289 }
290
291 void USBSerial::on_main_loop(void *argument)
292 {
293 // apparently some OSes don't assert DTR when a program opens the port
294 if (available() && !attach)
295 attach = true;
296
297 if (attach != attached) {
298 if (attach) {
299 attached = true;
300 THEKERNEL->streams->append_stream(this);
301 puts("Smoothie\r\nok\r\n");
302 } else {
303 attached = false;
304 THEKERNEL->streams->remove_stream(this);
305 txbuf.flush();
306 rxbuf.flush();
307 nl_in_rx = 0;
308 }
309 }
310
311 // if we are in feed hold we do not process anything
312 if(THEKERNEL->get_feed_hold()) return;
313
314 if (nl_in_rx) {
315 string received;
316 while (available()) {
317 char c = _getc();
318 if( c == '\n' || c == '\r') {
319 struct SerialMessage message;
320 message.message = received;
321 message.stream = this;
322 iprintf("USBSerial Received: %s\n", message.message.c_str());
323 THEKERNEL->call_event(ON_CONSOLE_LINE_RECEIVED, &message );
324 return;
325 } else {
326 received += c;
327 }
328 }
329 }
330 }
331
332 void USBSerial::on_attach()
333 {
334 attach = true;
335 }
336
337 void USBSerial::on_detach()
338 {
339 attach = false;
340 }