grblHAL core  20260922
stream.h
Go to the documentation of this file.
1 /*
2  stream.h - high level (serial) stream handling
3 
4  Part of grblHAL
5 
6  Copyright (c) 2019-2026 Terje Io
7 
8  grblHAL is free software: you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation, either version 3 of the License, or
11  (at your option) any later version.
12 
13  grblHAL is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with grblHAL. If not, see <http://www.gnu.org/licenses/>.
20 */
21 
28 #ifndef _STREAM_H_
29 #define _STREAM_H_
30 
31 #define ASCII_NUL 0x00
32 #define ASCII_SOH 0x01
33 #define ASCII_STX 0x02
34 #define ASCII_ETX 0x03
35 #define ASCII_EOT 0x04
36 #define ASCII_ENQ 0x05
37 #define ASCII_ACK 0x06
38 #define ASCII_BS 0x08
39 #define ASCII_TAB 0x09
40 #define ASCII_LF 0x0A
41 #define ASCII_CR 0x0D
42 #define ASCII_XON 0x11
43 #define ASCII_XOFF 0x13
44 #define ASCII_NAK 0x15
45 #define ASCII_EOF 0x1A
46 #define ASCII_CAN 0x18
47 #define ASCII_EM 0x19
48 #define ASCII_ESC 0x1B
49 #define ASCII_DEL 0x7F
50 #define ASCII_EOL "\r\n"
51 
52 #ifndef RX_BUFFER_SIZE
53 #define RX_BUFFER_SIZE 1024 // must be a power of 2
54 #endif
55 
56 #ifndef TX_BUFFER_SIZE
57 #define TX_BUFFER_SIZE 512 // must be a power of 2
58 #endif
59 
60 #ifndef BLOCK_TX_BUFFER_SIZE
61 #define BLOCK_TX_BUFFER_SIZE 256
62 #endif
63 
64 // Serial baud rate
65 #ifndef BAUD_RATE
66 #define BAUD_RATE 115200
67 #endif
68 
69 // Value to be returned from input stream when no data is available
70 #ifndef SERIAL_NO_DATA
71 #define SERIAL_NO_DATA -1
72 #endif
73 
74 #define BUFNEXT(ptr, buffer) ((ptr + 1) & (sizeof(buffer.data) - 1))
75 #define BUFCOUNT(head, tail, size) ((head >= tail) ? (head - tail) : (size - tail + head))
76 
77 #include <stddef.h>
78 #include <stdint.h>
79 #include <stdbool.h>
80 
81 #include "vfs.h"
82 
83 typedef enum {
90 
91 typedef enum {
96 
97 typedef enum {
101 
102 typedef enum {
108 
109 typedef enum {
116 
117 typedef union {
118  uint8_t value;
119  struct {
120  uint8_t width :2,
122  parity :3,
123  unused :1;
124  };
126 
127 typedef union {
128  uint8_t value;
129  struct {
130  uint8_t dtr :1,
131  dsr :1,
132  rts :1,
133  cts :1,
134  unused :4;
135  };
137 
138 typedef enum {
140  Report_MPGMode = (1 << 0),
141  Report_Scaling = (1 << 1),
142  Report_Homed = (1 << 2),
143  Report_LatheXMode = (1 << 3),
144  Report_Spindle = (1 << 4),
145  Report_Coolant = (1 << 5),
146  Report_Overrides = (1 << 6),
147  Report_Tool = (1 << 7),
148  Report_WCO = (1 << 8),
149  Report_GWCO = (1 << 9),
150  Report_ToolOffset = (1 << 10),
151  Report_M66Result = (1 << 11),
152  Report_PWM = (1 << 12),
153  Report_Motor = (1 << 13),
154  Report_Encoder = (1 << 14),
155  Report_TLOReference = (1 << 15),
156  Report_Fan = (1 << 16),
157  Report_SpindleId = (1 << 17),
158  Report_ProbeId = (1 << 18),
159  Report_DistanceToGo = (1 << 19),
160  Report_ProbeProtect = (1 << 20),
161  Report_ForceWCO = (1 << 29),
162  Report_CycleStart = (1 << 30),
163  Report_All = 0x801FFFFF
165 
166 typedef union {
167  uint32_t value;
168  struct {
169  uint32_t mpg_mode :1,
170  scaling :1,
171  homed :1,
172  xmode :1,
173  spindle :1,
174  coolant :1,
176  tool :1,
177  wco :1,
178  gwco :1,
181  pwm :1,
182  motor :1,
183  encoder :1,
185  fan :1,
187  probe_id :1,
190  unassigned :8, //
193  all :1;
194  };
196 
197 typedef struct {
200  uint8_t wco_counter;
202 
203 struct io_stream_properties;
205 
209 typedef bool (*stream_is_connected_ptr)(void);
210 
214 typedef uint16_t (*get_stream_buffer_count_ptr)(void);
215 
219 typedef int32_t (*stream_read_ptr)(void);
220 
226 typedef void (*stream_write_ptr)(const char *s);
227 
232 typedef void (*stream_write_n_ptr)(const uint8_t *s, uint16_t len);
233 
234 
238 typedef bool (*stream_write_char_ptr)(const uint8_t c);
239 
245 typedef bool (*enqueue_realtime_command_ptr)(uint8_t c);
246 
250 typedef void (*stream_set_direction_ptr)(bool tx);
251 
260 typedef bool (*enqueue_realtime_command2_ptr)(uint8_t c);
261 
262 
271 
276 typedef bool (*set_format_ptr)(serial_format_t format);
277 
282 typedef bool (*set_baud_rate_ptr)(uint32_t baud_rate);
283 
285 typedef void (*flush_stream_buffer_ptr)(void);
286 
292 typedef void (*cancel_read_buffer_ptr)(void);
293 
312 typedef bool (*suspend_read_ptr)(bool await);
313 
323 typedef bool (*disable_rx_stream_ptr)(bool disable);
324 
330 
331 typedef union {
332  uint8_t value;
333  struct {
334  uint8_t claimable :1,
341  is_usb :1;
342  };
344 
345 typedef union {
346  uint8_t value;
347  struct {
348  uint8_t webui_connected :1,
349  is_usb :1,
351  passthru :1,
352  utf8 :1,
353  eof :1,
355  is_mpg :1;
356  };
358 
360 typedef struct {
362  uint8_t instance;
384 // The following fields are kept over a stream change
387 } io_stream_t;
388 
389 typedef struct {
393  uint32_t baud_rate;
396 
397 typedef const io_stream_t *(*stream_claim_ptr)(uint32_t baud_rate);
398 typedef bool (*stream_release_ptr)(uint8_t instance);
399 typedef const io_stream_status_t *(*stream_get_status_ptr)(uint8_t instance);
400 
403  uint8_t instance;
408 };
409 
410 typedef bool (*stream_enumerate_callback_ptr)(io_stream_properties_t const *properties, void *data);
411 
412 typedef struct io_stream_details {
413  uint8_t n_streams;
417 
418 // The following structures and functions are not referenced in the core code, may be used by drivers
419 
420 typedef struct {
421  volatile uint_fast16_t head;
422  volatile uint_fast16_t tail;
423  volatile bool rts_state;
424  bool overflow;
425  bool backup;
426  uint8_t data[RX_BUFFER_SIZE];
428 
429 typedef struct {
430  volatile uint_fast16_t head;
431  volatile uint_fast16_t tail;
432  uint8_t data[TX_BUFFER_SIZE];
434 
435 typedef struct {
436  uint_fast16_t length;
437  uint_fast16_t max_length;
438  uint8_t *s;
439  uint8_t data[BLOCK_TX_BUFFER_SIZE];
441 
442 // double buffered tx stream
443 typedef struct {
444  uint_fast16_t length;
445  uint_fast16_t max_length;
446  uint8_t *s;
448  uint8_t data[BLOCK_TX_BUFFER_SIZE];
449  uint8_t data2[BLOCK_TX_BUFFER_SIZE];
451 
452 #ifdef __cplusplus
453 extern "C" {
454 #endif
455 
456 static inline bool stream_is_uart (stream_type_t type)
457 {
458  return type == StreamType_Serial || type == StreamType_Bluetooth;
459 }
460 
464 int32_t stream_get_null (void);
465 
471  bool stream_rx_suspend (stream_rx_buffer_t *rxbuffer, bool suspend);
472 
474 
475 bool stream_mpg_register (const io_stream_t *stream, bool rx_only, stream_write_char_ptr write_char);
476 
477 bool stream_mpg_set_baud (uint8_t baud);
478 
483 bool stream_mpg_enable (bool on);
484 
485 void stream_mpg_set_mode (void *data);
486 
487 bool stream_mpg_check_enable (uint8_t c);
488 
489 bool stream_buffer_all (uint8_t c);
490 
491 bool stream_tx_blocking (void);
492 
493 bool stream_enqueue_realtime_command (uint8_t c);
494 
496 
497 bool stream_enumerate_streams (stream_enumerate_callback_ptr callback, void *data);
498 
499 bool stream_connect (const io_stream_t *stream);
500 
501 bool stream_connect_instance (uint8_t instance, uint32_t baud_rate);
502 
503 void stream_disconnect (const io_stream_t *stream);
504 
505 bool stream_connected (void);
506 
507 bool stream_is_busy (bool is_connected);
508 
509 bool stream_await_tx_clear (const io_stream_t *stream);
510 
511 void stream_set_defaults (const io_stream_t *stream, uint32_t baud_rate);
512 
513 const io_stream_t *stream_get_base (void);
514 
516 
517 const io_stream_status_t *stream_get_uart_status (uint8_t instance);
518 
519 const io_stream_t *stream_null_init (uint32_t baud_rate);
520 
521 void stream_usb_linestate_changed (uint8_t instance, serial_linestate_t state);
522 
523 io_stream_t const *stream_open_instance (uint8_t instance, uint32_t baud_rate, stream_write_char_ptr rx_handler, const char *description);
524 bool stream_close (io_stream_t const *stream);
525 bool stream_set_description (const io_stream_t *stream, const char *description);
526 
527 void stream_set_file (vfs_file_t *file, stream_read_ptr read);
528 bool stream_is_file (void);
529 
530 void debug_printf(const char *fmt, ...);
531 
532 #if defined(DEBUG) || defined(DEBUGOUT)
533 #define DEBUG_PRINT 1
534 #ifdef DEBUGOUT
535 void debug_write (const char *s);
536 void debug_writeln (const char *s);
537 bool debug_stream_init (void);
538 #endif
539 #else
540 #define DEBUG_PRINT 0
541 #endif
542 
543 #define debug_print(fmt, ...) \
544  do { if(DEBUG_PRINT) debug_printf(fmt, __VA_ARGS__); } while(0)
545 
546 #ifdef __cplusplus
547 }
548 #endif
549 
550 #endif
stream_write_char_ptr write_char
Definition: stream.c:97
bool stream_connected(void)
Definition: stream.c:251
serial_stopbits_t
Definition: stream.h:102
@ Serial_StopBits0_5
Definition: stream.h:106
@ Serial_StopBits1
Definition: stream.h:103
@ Serial_StopBits2
Definition: stream.h:105
@ Serial_StopBits1_5
Definition: stream.h:104
void stream_disconnect(const io_stream_t *stream)
Definition: stream.c:529
bool(* stream_release_ptr)(uint8_t instance)
Definition: stream.h:398
stream_suspend_state_t
Definition: stream.h:91
@ StreamSuspend_Pending
Definition: stream.h:93
@ StreamSuspend_Active
Definition: stream.h:94
@ StreamSuspend_Off
Definition: stream.h:92
uint16_t(* get_stream_buffer_count_ptr)(void)
Pointer to function for getting number of characters available or free in a stream buffer.
Definition: stream.h:214
bool(* stream_is_connected_ptr)(void)
Pointer to function for getting stream connected status.
Definition: stream.h:209
void(* stream_write_ptr)(const char *s)
Pointer to function for writing a null terminated string to the output stream.
Definition: stream.h:226
bool stream_enqueue_realtime_command(uint8_t c)
Definition: stream.c:239
bool(* stream_enumerate_callback_ptr)(io_stream_properties_t const *properties, void *data)
Definition: stream.h:410
void stream_usb_linestate_changed(uint8_t instance, serial_linestate_t state)
Definition: stream.c:328
bool(* set_format_ptr)(serial_format_t format)
Pointer to function for setting the stream format.
Definition: stream.h:276
void stream_mpg_set_mode(void *data)
Definition: stream.c:633
const io_stream_status_t * stream_get_uart_status(uint8_t instance)
Definition: stream.c:155
bool stream_tx_blocking(void)
Definition: stream.c:136
bool(* stream_write_char_ptr)(const uint8_t c)
Pointer to function for writing a single character to the output stream.
Definition: stream.h:238
bool stream_mpg_set_baud(uint8_t baud)
Definition: stream.c:796
bool stream_is_file(void)
Definition: stream.c:585
void stream_set_defaults(const io_stream_t *stream, uint32_t baud_rate)
Definition: stream.c:592
io_stream_t const * stream_open_instance(uint8_t instance, uint32_t baud_rate, stream_write_char_ptr rx_handler, const char *description)
Definition: stream.c:535
void(* cancel_read_buffer_ptr)(void)
Pointer to function for flushing the input buffer and inserting an ASCII_CAN character.
Definition: stream.h:292
bool(* enqueue_realtime_command_ptr)(uint8_t c)
Pointer to function for extracting real-time commands from the input stream and enqueue them for proc...
Definition: stream.h:245
int32_t stream_get_null(void)
Dummy function for reading data from a virtual empty input buffer.
Definition: stream.c:150
void stream_register_streams(io_stream_details_t *details)
Definition: stream.c:106
io_stream_flags_t stream_get_flags(io_stream_t stream)
Definition: stream.c:460
int32_t(* stream_read_ptr)(void)
Pointer to function for reading a single character from a input stream.
Definition: stream.h:219
bool stream_mpg_enable(bool on)
Function for enabling/disabling input from a secondary input stream.
Definition: stream.c:803
#define RX_BUFFER_SIZE
Definition: stream.h:53
bool stream_connect_instance(uint8_t instance, uint32_t baud_rate)
Definition: stream.c:519
bool stream_enumerate_streams(stream_enumerate_callback_ptr callback, void *data)
Definition: stream.c:114
const io_stream_t * stream_null_init(uint32_t baud_rate)
Definition: stream.c:913
void(* stream_write_n_ptr)(const uint8_t *s, uint16_t len)
Pointer to function for writing a n character long string to the output stream.
Definition: stream.h:232
void debug_printf(const char *fmt,...)
Definition: stream.c:1061
bool stream_connect(const io_stream_t *stream)
Definition: stream.c:491
bool stream_mpg_register(const io_stream_t *stream, bool rx_only, stream_write_char_ptr write_char)
Definition: stream.c:716
void(* flush_stream_buffer_ptr)(void)
Pointer to function for flushing a stream buffer.
Definition: stream.h:285
stream_suspend_state_t stream_is_rx_suspended(void)
Definition: stream.c:194
#define TX_BUFFER_SIZE
Definition: stream.h:57
bool stream_set_description(const io_stream_t *stream, const char *description)
Definition: stream.c:479
bool(* set_baud_rate_ptr)(uint32_t baud_rate)
Pointer to function for setting the stream baud rate.
Definition: stream.h:282
struct io_stream_details io_stream_details_t
void stream_set_file(vfs_file_t *file, stream_read_ptr read)
Definition: stream.c:576
bool stream_await_tx_clear(const io_stream_t *stream)
Definition: stream.c:224
bool stream_is_busy(bool is_connected)
Definition: stream.c:778
const io_stream_t *(* stream_claim_ptr)(uint32_t baud_rate)
Definition: stream.h:397
serial_parity_t
Definition: stream.h:109
@ Serial_ParitySpace
Definition: stream.h:114
@ Serial_ParityNone
Definition: stream.h:110
@ Serial_ParityMark
Definition: stream.h:113
@ Serial_ParityEven
Definition: stream.h:111
@ Serial_ParityOdd
Definition: stream.h:112
bool stream_rx_suspend(stream_rx_buffer_t *rxbuffer, bool suspend)
Function for blocking reads from or restoring an input buffer.
Definition: stream.c:199
#define BLOCK_TX_BUFFER_SIZE
Definition: stream.h:61
report_tracking_t
Definition: stream.h:138
@ Report_PWM
Definition: stream.h:152
@ Report_Scaling
Definition: stream.h:141
@ Report_Homed
Definition: stream.h:142
@ Report_ClearAll
Definition: stream.h:139
@ Report_GWCO
Definition: stream.h:149
@ Report_DistanceToGo
Definition: stream.h:159
@ Report_WCO
Definition: stream.h:148
@ Report_Overrides
Definition: stream.h:146
@ Report_CycleStart
Definition: stream.h:162
@ Report_Motor
Definition: stream.h:153
@ Report_All
Definition: stream.h:163
@ Report_ProbeProtect
Definition: stream.h:160
@ Report_MPGMode
Definition: stream.h:140
@ Report_LatheXMode
Definition: stream.h:143
@ Report_TLOReference
Definition: stream.h:155
@ Report_SpindleId
Definition: stream.h:157
@ Report_ForceWCO
Definition: stream.h:161
@ Report_Encoder
Definition: stream.h:154
@ Report_Fan
Definition: stream.h:156
@ Report_Coolant
Definition: stream.h:145
@ Report_Spindle
Definition: stream.h:144
@ Report_ToolOffset
Definition: stream.h:150
@ Report_ProbeId
Definition: stream.h:158
@ Report_Tool
Definition: stream.h:147
@ Report_M66Result
Definition: stream.h:151
bool(* disable_rx_stream_ptr)(bool disable)
Pointer to function for disabling/enabling stream input.
Definition: stream.h:323
bool stream_buffer_all(uint8_t c)
Definition: stream.c:234
void(* on_linestate_changed_ptr)(io_stream_properties_t *stream, serial_linestate_t state)
Pointer to function for handling line state changed events.
Definition: stream.h:329
const io_stream_status_t *(* stream_get_status_ptr)(uint8_t instance)
Definition: stream.h:399
enqueue_realtime_command_ptr(* set_enqueue_rt_handler_ptr)(enqueue_realtime_command_ptr handler)
Pointer to function for setting the enqueue realtime commands handler.
Definition: stream.h:270
bool stream_close(io_stream_t const *stream)
Definition: stream.c:551
void(* stream_set_direction_ptr)(bool tx)
Pointer to function for setting the transfer direction control signal for half-duplex connections (RS...
Definition: stream.h:250
bool stream_mpg_check_enable(uint8_t c)
Definition: stream.c:670
stream_type_t
Definition: stream.h:83
@ StreamType_Bluetooth
Definition: stream.h:85
@ StreamType_Telnet
Definition: stream.h:86
@ StreamType_WebSocket
Definition: stream.h:87
@ StreamType_Null
Definition: stream.h:88
@ StreamType_Serial
Definition: stream.h:84
serial_width_t
Definition: stream.h:97
@ Serial_8bit
Definition: stream.h:98
@ Serial_7bit
Definition: stream.h:99
bool(* suspend_read_ptr)(bool await)
Pointer to function for blocking reads from and restoring a input buffer.
Definition: stream.h:312
const io_stream_t * stream_get_base(void)
Definition: stream.c:455
bool(* enqueue_realtime_command2_ptr)(uint8_t c)
Optional, but recommended, pointer to function for enqueueing realtime command characters.
Definition: stream.h:260
Definition: stream.h:412
struct io_stream_details * next
Definition: stream.h:415
io_stream_properties_t * streams
Definition: stream.h:414
uint8_t n_streams
Definition: stream.h:413
Definition: stream.h:401
uint8_t instance
Instance of stream type, starts from 0.
Definition: stream.h:403
stream_release_ptr release
Definition: stream.h:406
stream_get_status_ptr get_status
Optional handler for getting stream status, for UART streams only.
Definition: stream.h:407
stream_type_t type
Type of stream.
Definition: stream.h:402
stream_claim_ptr claim
Definition: stream.h:405
io_stream_flags_t flags
Definition: stream.h:404
Definition: stream.h:389
uint32_t baud_rate
Definition: stream.h:393
serial_format_t format
Stream format: data length (bits), parity, stop bits.
Definition: stream.h:392
io_stream_state_t state
Optional status flags such as connected status.
Definition: stream.h:390
uint32_t last_status_request
Timestamp of last status request received.
Definition: stream.h:394
io_stream_flags_t flags
Stream capability flags.
Definition: stream.h:391
Properties and handlers for stream I/O.
Definition: stream.h:360
uint8_t instance
Instance of stream type, starts from 0.
Definition: stream.h:362
flush_stream_buffer_ptr reset_read_buffer
Handler for flushing the input buffer.
Definition: stream.h:371
stream_write_char_ptr write_char
Handler for writing a single character to current stream only.
Definition: stream.h:368
set_enqueue_rt_handler_ptr set_enqueue_rt_handler
Handler for setting the enqueue realtime command character handler.
Definition: stream.h:373
set_format_ptr set_format
Optional handler for setting the stream format.
Definition: stream.h:381
stream_write_ptr write
Handler for writing string to current output stream only.
Definition: stream.h:366
enqueue_realtime_command2_ptr enqueue_rt_command
(Optional) handler for enqueueing a realtime command character.
Definition: stream.h:369
io_stream_state_t state
Optional status flags such as connected status.
Definition: stream.h:363
get_stream_buffer_count_ptr get_rx_buffer_count
Optional handler for getting number of characters in the input buffer.
Definition: stream.h:377
stream_type_t type
Type of stream.
Definition: stream.h:361
on_linestate_changed_ptr on_linestate_changed
Optional handler to be called when line state changes. Set by client.
Definition: stream.h:386
stream_write_n_ptr write_n
Optional handler for writing n characters to current output stream only. Required for Modbus support.
Definition: stream.h:375
get_stream_buffer_count_ptr get_tx_buffer_count
Optional handler for getting number of characters in the output buffer(s). Count shall include any un...
Definition: stream.h:378
disable_rx_stream_ptr disable_rx
Optional handler for disabling/enabling a stream. Recommended?
Definition: stream.h:376
stream_set_direction_ptr set_direction
Optional handler for setting the transfer direction for half-duplex communication.
Definition: stream.h:382
set_baud_rate_ptr set_baud_rate
Optional handler for setting the stream baud rate. Required for Modbus/RS-485 support,...
Definition: stream.h:380
status_report_tracking_t report
Tracks when to add data to status reports.
Definition: stream.h:385
stream_is_connected_ptr is_connected
Handler for getting stream connected status.
Definition: stream.h:364
cancel_read_buffer_ptr cancel_read_buffer
Handler for flushing the input buffer and inserting an ASCII_CAN character.
Definition: stream.h:372
stream_write_ptr write_all
Handler for writing string to all active output streams.
Definition: stream.h:367
vfs_file_t * file
File handle, non-null if streaming from a file.
Definition: stream.h:383
stream_read_ptr read
Handler for reading a single character from the input stream.
Definition: stream.h:370
flush_stream_buffer_ptr reset_write_buffer
Optional handler for flushing the output buffer. Any transmit FIFO shall be flushed as well....
Definition: stream.h:379
get_stream_buffer_count_ptr get_rx_buffer_free
Handler for getting number of free characters in the input buffer.
Definition: stream.h:365
suspend_read_ptr suspend_read
Optional handler for saving away and restoring the current input buffer.
Definition: stream.h:374
Definition: stream.h:197
uint8_t override_counter
Tracks when to add override data to status reports.
Definition: stream.h:199
report_tracking_flags_t flags
Definition: stream.h:198
uint8_t wco_counter
Tracks when to add work coordinate offset data to status reports.
Definition: stream.h:200
Definition: stream.h:443
bool use_tx2data
Definition: stream.h:447
uint_fast16_t length
Definition: stream.h:444
uint8_t * s
Definition: stream.h:446
uint_fast16_t max_length
Definition: stream.h:445
Definition: stream.h:435
uint_fast16_t length
Definition: stream.h:436
uint8_t * s
Definition: stream.h:438
uint_fast16_t max_length
Definition: stream.h:437
Definition: stream.h:420
bool overflow
Definition: stream.h:424
volatile uint_fast16_t head
Definition: stream.h:421
volatile bool rts_state
Definition: stream.h:423
bool backup
Definition: stream.h:425
volatile uint_fast16_t tail
Definition: stream.h:422
Definition: stream.h:429
volatile uint_fast16_t head
Definition: stream.h:430
volatile uint_fast16_t tail
Definition: stream.h:431
Definition: vfs.h:95
Definition: stream.h:331
uint8_t can_set_baud
Definition: stream.h:336
uint8_t is_usb
Definition: stream.h:341
uint8_t claimed
Definition: stream.h:335
uint8_t value
Definition: stream.h:332
uint8_t init_ok
Definition: stream.h:340
uint8_t rx_only
Definition: stream.h:337
uint8_t modbus_ready
Definition: stream.h:338
uint8_t rts_handshake
Definition: stream.h:339
uint8_t claimable
Definition: stream.h:334
Definition: stream.h:345
uint8_t is_usb
Definition: stream.h:349
uint8_t m98_macro_prescan
Set when prescanning gcode for M98 macro definitions.
Definition: stream.h:354
uint8_t eof
Set when a file stream reaches end-of-file.
Definition: stream.h:353
uint8_t value
Definition: stream.h:346
uint8_t passthru
Set when stream is in passthru mode.
Definition: stream.h:351
uint8_t utf8
Set when stream is in UTF8 mode.
Definition: stream.h:352
uint8_t webui_connected
Definition: stream.h:348
uint8_t linestate_event
Set when driver supports on_linestate_changed event.
Definition: stream.h:350
uint8_t is_mpg
Set when stream is redirected to MPG.
Definition: stream.h:355
Definition: stream.h:166
uint32_t tlo_reference
Tool length offset reference changed.
Definition: stream.h:184
uint32_t force_wco
Add work coordinates (due to WCO changed during motion).
Definition: stream.h:191
uint32_t tool
Tool changed.
Definition: stream.h:176
uint32_t wco
Add work coordinates.
Definition: stream.h:177
uint32_t cycle_start
Cycle start signal triggered. NOTE: do NOT add to Report_All enum above!
Definition: stream.h:192
uint32_t unassigned
Definition: stream.h:190
uint32_t gwco
Add work coordinate.
Definition: stream.h:178
uint32_t fan
Fan on/off changed.
Definition: stream.h:185
uint32_t distance_to_go
Distance to go.
Definition: stream.h:188
uint32_t mpg_mode
MPG mode changed.
Definition: stream.h:169
uint32_t all
Set when CMD_STATUS_REPORT_ALL is requested, may be used by user code.
Definition: stream.h:193
uint32_t motor
Add motor information (optional: to be added by driver).
Definition: stream.h:182
uint32_t spindle_id
Spindle changed.
Definition: stream.h:186
uint32_t tool_offset
Tool offsets changed.
Definition: stream.h:179
uint32_t m66result
M66 result updated.
Definition: stream.h:180
uint32_t probe_id
Probe changed.
Definition: stream.h:187
uint32_t spindle
Spindle state changed.
Definition: stream.h:173
uint32_t homed
Homed state changed.
Definition: stream.h:171
uint32_t scaling
Scaling (G50/G51) changed.
Definition: stream.h:170
uint32_t probe_protect
Probe protection state changed.
Definition: stream.h:189
uint32_t pwm
Add PWM information (optional: to be added by driver).
Definition: stream.h:181
uint32_t encoder
Add encoder information (optional: to be added by driver).
Definition: stream.h:183
uint32_t value
Definition: stream.h:167
uint32_t coolant
Coolant state changed.
Definition: stream.h:174
uint32_t overrides
Overrides changed.
Definition: stream.h:175
uint32_t xmode
Lathe radius/diameter mode changed.
Definition: stream.h:172
Definition: stream.h:117
uint8_t width
Definition: stream.h:120
uint8_t value
Definition: stream.h:118
uint8_t stopbits
Definition: stream.h:121
uint8_t parity
Definition: stream.h:122
uint8_t unused
Definition: stream.h:123
Definition: stream.h:127
uint8_t cts
Definition: stream.h:133
uint8_t rts
Definition: stream.h:132
uint8_t dtr
Definition: stream.h:130
uint8_t value
Definition: stream.h:128
uint8_t dsr
Definition: stream.h:131
uint8_t unused
Definition: stream.h:134