mirror of
https://github.com/grblHAL/core.git
synced 2026-02-06 00:52:35 +08:00
Now returns no data for alarm and error enums when firmware is compiled for 128K versions of the STM32F1xx MCU. This frees up some flash space for plugins etc.
651 lines
18 KiB
C
651 lines
18 KiB
C
/*
|
|
stream.c - high level (serial) stream handling
|
|
|
|
Part of grblHAL
|
|
|
|
Copyright (c) 2021-2023 Terje Io
|
|
|
|
Grbl is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Grbl is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "hal.h"
|
|
#include "protocol.h"
|
|
#include "state_machine.h"
|
|
|
|
static stream_rx_buffer_t rxbackup;
|
|
|
|
typedef struct {
|
|
enqueue_realtime_command_ptr enqueue_realtime_command;
|
|
stream_read_ptr read;
|
|
stream_rx_buffer_t *rxbuffer;
|
|
} stream_state_t;
|
|
|
|
typedef union {
|
|
uint8_t value;
|
|
struct {
|
|
uint8_t is_mpg :1,
|
|
is_mpg_tx :1,
|
|
unused :6;
|
|
};
|
|
} stream_connection_flags_t;
|
|
|
|
typedef struct stream_connection {
|
|
const io_stream_t *stream;
|
|
stream_is_connected_ptr is_up;
|
|
stream_connection_flags_t flags;
|
|
struct stream_connection *next;
|
|
} stream_connection_t;
|
|
|
|
static const io_stream_properties_t null_stream = {
|
|
.type = StreamType_Null,
|
|
.instance = 0,
|
|
.flags.claimable = On,
|
|
.flags.claimed = Off,
|
|
.flags.connected = On,
|
|
.flags.can_set_baud = On,
|
|
.claim = stream_null_init
|
|
};
|
|
|
|
static io_stream_details_t null_streams = {
|
|
.n_streams = 1,
|
|
.streams = (io_stream_properties_t *)&null_stream,
|
|
};
|
|
|
|
static stream_state_t stream = {0};
|
|
static io_stream_details_t *streams = &null_streams;
|
|
static stream_connection_t base = {0}, mpg = {0}, *connections = &base;
|
|
static stream_write_char_ptr mpg_write_char = NULL;
|
|
|
|
void stream_register_streams (io_stream_details_t *details)
|
|
{
|
|
if(details->n_streams) {
|
|
details->next = streams;
|
|
streams = details;
|
|
}
|
|
}
|
|
|
|
bool stream_enumerate_streams (stream_enumerate_callback_ptr callback)
|
|
{
|
|
if(callback == NULL)
|
|
return false;
|
|
|
|
bool claimed = false;
|
|
io_stream_details_t *details = streams;
|
|
|
|
while(details && !claimed) {
|
|
uint_fast8_t idx;
|
|
for(idx = 0; idx < details->n_streams; idx++) {
|
|
if((claimed = callback(&details->streams[idx])))
|
|
break;
|
|
}
|
|
details = details->next;
|
|
};
|
|
|
|
return claimed;
|
|
}
|
|
|
|
// called from stream drivers while tx is blocking, returns false to terminate
|
|
bool stream_tx_blocking (void)
|
|
{
|
|
// TODO: Restructure st_prep_buffer() calls to be executed here during a long print.
|
|
|
|
grbl.on_execute_realtime(state_get());
|
|
|
|
return !(sys.rt_exec_state & EXEC_RESET);
|
|
}
|
|
|
|
// "dummy" version of serialGetC
|
|
int16_t stream_get_null (void)
|
|
{
|
|
return SERIAL_NO_DATA;
|
|
}
|
|
|
|
ISR_CODE static bool ISR_FUNC(await_toolchange_ack)(char c)
|
|
{
|
|
if(c == CMD_TOOL_ACK && !stream.rxbuffer->backup) {
|
|
memcpy(&rxbackup, stream.rxbuffer, sizeof(stream_rx_buffer_t));
|
|
stream.rxbuffer->backup = true;
|
|
stream.rxbuffer->tail = stream.rxbuffer->head;
|
|
hal.stream.read = stream.read; // restore normal input
|
|
hal.stream.set_enqueue_rt_handler(stream.enqueue_realtime_command);
|
|
stream.enqueue_realtime_command = NULL;
|
|
if(grbl.on_toolchange_ack)
|
|
grbl.on_toolchange_ack();
|
|
} else
|
|
return stream.enqueue_realtime_command(c);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool stream_rx_suspend (stream_rx_buffer_t *rxbuffer, bool suspend)
|
|
{
|
|
if(suspend) {
|
|
if(stream.rxbuffer == NULL) {
|
|
stream.rxbuffer = rxbuffer;
|
|
stream.read = hal.stream.read;
|
|
stream.enqueue_realtime_command = hal.stream.set_enqueue_rt_handler(await_toolchange_ack);
|
|
hal.stream.read = stream_get_null;
|
|
}
|
|
} else if(stream.rxbuffer) {
|
|
if(rxbuffer->backup)
|
|
memcpy(rxbuffer, &rxbackup, sizeof(stream_rx_buffer_t));
|
|
if(stream.enqueue_realtime_command) {
|
|
hal.stream.read = stream.read; // restore normal input
|
|
hal.stream.set_enqueue_rt_handler(stream.enqueue_realtime_command);
|
|
stream.enqueue_realtime_command = NULL;
|
|
}
|
|
stream.rxbuffer = NULL;
|
|
}
|
|
|
|
return rxbuffer->tail != rxbuffer->head;
|
|
}
|
|
|
|
ISR_CODE bool ISR_FUNC(stream_buffer_all)(char c)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
ISR_CODE bool ISR_FUNC(stream_enqueue_realtime_command)(char c)
|
|
{
|
|
bool drop = hal.stream.enqueue_rt_command ? hal.stream.enqueue_rt_command(c) : protocol_enqueue_realtime_command(c);
|
|
|
|
if(drop && (c == CMD_CYCLE_START || c == CMD_CYCLE_START_LEGACY))
|
|
sys.report.cycle_start = settings.status_report.pin_state;
|
|
|
|
return drop;
|
|
}
|
|
|
|
static bool is_connected (void)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
static bool is_not_connected (void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
static bool connection_is_up (io_stream_t *stream)
|
|
{
|
|
if(stream->is_connected)
|
|
return stream->is_connected();
|
|
|
|
stream_connection_t *connection = connections;
|
|
|
|
while(connection) {
|
|
if(connection->stream->type == stream->type &&
|
|
connection->stream->instance == stream->instance &&
|
|
connection->stream->state.is_usb == stream->state.is_usb) {
|
|
|
|
if(connection->stream->state.is_usb)
|
|
connection->is_up = is_not_connected;
|
|
|
|
return connection->is_up();
|
|
}
|
|
connection = connection->next;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static void stream_write_all (const char *s)
|
|
{
|
|
stream_connection_t *connection = connections;
|
|
|
|
while(connection) {
|
|
if(connection->is_up())
|
|
connection->stream->write(s);
|
|
connection = connection->next;
|
|
}
|
|
}
|
|
|
|
static stream_connection_t *add_connection (const io_stream_t *stream)
|
|
{
|
|
stream_connection_t *connection, *last = connections;
|
|
|
|
if(base.stream == NULL) {
|
|
base.stream = stream;
|
|
connection = &base;
|
|
} else if((connection = malloc(sizeof(stream_connection_t)))) {
|
|
connection->stream = stream;
|
|
connection->next = NULL;
|
|
while(last->next) {
|
|
last = last->next;
|
|
if(last->stream == stream) {
|
|
free(connection);
|
|
return NULL;
|
|
}
|
|
}
|
|
last->next = connection;
|
|
}
|
|
|
|
connection->is_up = stream->is_connected ?
|
|
stream->is_connected :
|
|
(stream->state.is_usb && base.stream != stream ? is_not_connected : is_connected);
|
|
|
|
return connection;
|
|
}
|
|
|
|
static bool stream_select (const io_stream_t *stream, bool add)
|
|
{
|
|
static const io_stream_t *active_stream = NULL;
|
|
|
|
if(stream == base.stream) {
|
|
base.is_up = add ? (stream->is_connected ? stream->is_connected : is_connected) : is_not_connected;
|
|
return true;
|
|
}
|
|
|
|
if(add) {
|
|
|
|
if(add_connection(stream) == NULL)
|
|
return false;
|
|
|
|
} else { // disconnect
|
|
|
|
stream_connection_t *prev, *last = connections;
|
|
|
|
while(last->next) {
|
|
prev = last;
|
|
last = last->next;
|
|
if(last->stream == stream) {
|
|
prev->next = last->next;
|
|
free(last);
|
|
if(prev->next)
|
|
return false;
|
|
else {
|
|
stream = prev->stream;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool webui_connected = hal.stream.state.webui_connected;
|
|
|
|
switch(stream->type) {
|
|
|
|
case StreamType_Serial:
|
|
if(active_stream && active_stream->type != StreamType_Serial && connection_is_up((io_stream_t *)stream)) {
|
|
hal.stream.write = stream->write;
|
|
report_message("SERIAL STREAM ACTIVE", Message_Plain);
|
|
}
|
|
break;
|
|
|
|
case StreamType_Telnet:
|
|
if(connection_is_up(&hal.stream))
|
|
report_message("TELNET STREAM ACTIVE", Message_Plain);
|
|
if(add && sys.driver_started) {
|
|
hal.stream.write_all = stream->write;
|
|
grbl.report.init_message();
|
|
}
|
|
break;
|
|
|
|
case StreamType_WebSocket:
|
|
if(connection_is_up(&hal.stream))
|
|
report_message("WEBSOCKET STREAM ACTIVE", Message_Plain);
|
|
if(add && sys.driver_started && !hal.stream.state.webui_connected) {
|
|
hal.stream.write_all = stream->write;
|
|
grbl.report.init_message();
|
|
}
|
|
break;
|
|
|
|
case StreamType_Bluetooth:
|
|
if(connection_is_up(&hal.stream))
|
|
report_message("BLUETOOTH STREAM ACTIVE", Message_Plain);
|
|
if(add && sys.driver_started) {
|
|
hal.stream.write_all = stream->write;
|
|
grbl.report.init_message();
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
memcpy(&hal.stream, stream, sizeof(io_stream_t));
|
|
|
|
if(!hal.stream.write_all)
|
|
hal.stream.write_all = base.next != NULL ? stream_write_all : hal.stream.write;
|
|
|
|
if(stream == base.stream && base.is_up == is_not_connected)
|
|
base.is_up = is_connected;
|
|
|
|
if(stream->type == StreamType_WebSocket && !stream->state.webui_connected)
|
|
hal.stream.state.webui_connected = webui_connected;
|
|
|
|
hal.stream.set_enqueue_rt_handler(protocol_enqueue_realtime_command);
|
|
|
|
if(hal.stream.disable_rx)
|
|
hal.stream.disable_rx(false);
|
|
|
|
if(grbl.on_stream_changed)
|
|
grbl.on_stream_changed(hal.stream.type);
|
|
|
|
active_stream = stream;
|
|
|
|
return true;
|
|
}
|
|
|
|
const io_stream_t *stream_get_base (void)
|
|
{
|
|
return base.stream;
|
|
}
|
|
|
|
io_stream_flags_t stream_get_flags (io_stream_t stream)
|
|
{
|
|
io_stream_flags_t flags = {0};
|
|
io_stream_details_t *details = streams;
|
|
|
|
while(details) {
|
|
uint_fast8_t idx;
|
|
for(idx = 0; idx < details->n_streams; idx++) {
|
|
if(stream.type == details->streams[idx].type && stream.instance == details->streams[idx].instance) {
|
|
flags = details->streams[idx].flags;
|
|
break;
|
|
}
|
|
}
|
|
details = details->next;
|
|
};
|
|
|
|
return flags;
|
|
}
|
|
|
|
bool stream_connect (const io_stream_t *stream)
|
|
{
|
|
bool ok;
|
|
|
|
if((ok = stream_select(stream, true)) && stream->type == StreamType_Serial && !stream->state.is_usb && hal.periph_port.set_pin_description) {
|
|
hal.periph_port.set_pin_description(Input_RX, (pin_group_t)(PinGroup_UART + stream->instance), "Primary UART");
|
|
hal.periph_port.set_pin_description(Output_TX, (pin_group_t)(PinGroup_UART + stream->instance), "Primary UART");
|
|
}
|
|
|
|
return ok;
|
|
}
|
|
|
|
static struct {
|
|
uint8_t instance;
|
|
uint32_t baud_rate;
|
|
io_stream_t const *stream;
|
|
} connection;
|
|
|
|
static bool _open_instance (io_stream_properties_t const *stream)
|
|
{
|
|
if(stream->type == StreamType_Serial && (connection.instance == 255 || stream->instance == connection.instance) && stream->flags.claimable && !stream->flags.claimed)
|
|
connection.stream = stream->claim(connection.baud_rate);
|
|
|
|
return connection.stream != NULL;
|
|
}
|
|
|
|
bool stream_connect_instance (uint8_t instance, uint32_t baud_rate)
|
|
{
|
|
connection.instance = instance;
|
|
connection.baud_rate = baud_rate;
|
|
connection.stream = NULL;
|
|
|
|
return stream_enumerate_streams(_open_instance) && stream_connect(connection.stream);
|
|
}
|
|
|
|
void stream_disconnect (const io_stream_t *stream)
|
|
{
|
|
if(stream)
|
|
stream_select(stream, false);
|
|
}
|
|
|
|
io_stream_t const *stream_open_instance (uint8_t instance, uint32_t baud_rate, stream_write_char_ptr rx_handler)
|
|
{
|
|
connection.instance = instance;
|
|
connection.baud_rate = baud_rate;
|
|
connection.stream = NULL;
|
|
|
|
if(stream_enumerate_streams(_open_instance))
|
|
connection.stream->set_enqueue_rt_handler(rx_handler);
|
|
|
|
return connection.stream;
|
|
}
|
|
|
|
// MPG stream
|
|
|
|
bool stream_mpg_register (const io_stream_t *stream, bool rx_only, stream_write_char_ptr write_char)
|
|
{
|
|
if(stream == NULL || stream->type != StreamType_Serial || stream->disable_rx == NULL)
|
|
return false;
|
|
|
|
// base.flags.is_up = On;
|
|
|
|
mpg_write_char = write_char;
|
|
|
|
if(stream->write == NULL || rx_only) {
|
|
|
|
mpg.stream = stream;
|
|
mpg.is_up = is_connected;
|
|
|
|
return true;
|
|
}
|
|
|
|
stream_connection_t *connection = add_connection(stream);
|
|
|
|
if(connection) {
|
|
|
|
memcpy(&mpg, connection, sizeof(stream_connection_t));
|
|
|
|
mpg.flags.is_mpg_tx = On;
|
|
|
|
if(mpg_write_char)
|
|
mpg.stream->set_enqueue_rt_handler(mpg_write_char);
|
|
else
|
|
mpg.stream->disable_rx(true);
|
|
|
|
hal.stream.write_all = stream_write_all;
|
|
|
|
if(hal.periph_port.set_pin_description) {
|
|
hal.periph_port.set_pin_description(Output_TX, (pin_group_t)(PinGroup_UART + stream->instance), "MPG");
|
|
hal.periph_port.set_pin_description(Input_RX, (pin_group_t)(PinGroup_UART + stream->instance), "MPG");
|
|
}
|
|
}
|
|
|
|
return connection != NULL;
|
|
}
|
|
|
|
bool stream_mpg_enable (bool on)
|
|
{
|
|
static io_stream_t org_stream = {
|
|
.type = StreamType_Redirected
|
|
};
|
|
|
|
if(mpg.stream == NULL)
|
|
return false;
|
|
|
|
sys_state_t state = state_get();
|
|
|
|
// Deny entering MPG mode if busy
|
|
if(on == sys.mpg_mode || (on && (gc_state.file_run || !(state == STATE_IDLE || (state & (STATE_ALARM|STATE_ESTOP)))))) {
|
|
protocol_enqueue_realtime_command(CMD_STATUS_REPORT_ALL);
|
|
return false;
|
|
}
|
|
|
|
if(on) {
|
|
if(org_stream.type == StreamType_Redirected) {
|
|
memcpy(&org_stream, &hal.stream, sizeof(io_stream_t));
|
|
if(hal.stream.disable_rx)
|
|
hal.stream.disable_rx(true);
|
|
mpg.stream->disable_rx(false);
|
|
mpg.stream->set_enqueue_rt_handler(org_stream.set_enqueue_rt_handler(NULL));
|
|
hal.stream.type = StreamType_MPG;
|
|
hal.stream.read = mpg.stream->read;
|
|
if(mpg.flags.is_mpg_tx)
|
|
hal.stream.write = mpg.stream->write;
|
|
hal.stream.get_rx_buffer_free = mpg.stream->get_rx_buffer_free;
|
|
hal.stream.cancel_read_buffer = mpg.stream->cancel_read_buffer;
|
|
hal.stream.reset_read_buffer = mpg.stream->reset_read_buffer;
|
|
}
|
|
} else if(org_stream.type != StreamType_Redirected) {
|
|
if(mpg_write_char)
|
|
mpg.stream->set_enqueue_rt_handler(mpg_write_char);
|
|
else
|
|
mpg.stream->disable_rx(true);
|
|
memcpy(&hal.stream, &org_stream, sizeof(io_stream_t));
|
|
org_stream.type = StreamType_Redirected;
|
|
if(hal.stream.disable_rx)
|
|
hal.stream.disable_rx(false);
|
|
}
|
|
|
|
hal.stream.reset_read_buffer();
|
|
|
|
sys.mpg_mode = on;
|
|
system_add_rt_report(Report_MPGMode);
|
|
|
|
// Force a realtime status report, all reports when MPG mode active
|
|
protocol_enqueue_realtime_command(on ? CMD_STATUS_REPORT_ALL : CMD_STATUS_REPORT);
|
|
|
|
return true;
|
|
}
|
|
|
|
// null stream, discards output and returns no input
|
|
|
|
static enqueue_realtime_command_ptr enqueue_realtime_command = protocol_enqueue_realtime_command;
|
|
|
|
static uint16_t null_rx_free (void)
|
|
{
|
|
return RX_BUFFER_SIZE;
|
|
}
|
|
|
|
static uint16_t null_count (void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static bool null_put_c (const char c)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
static void null_write_string (const char *s)
|
|
{
|
|
}
|
|
|
|
static void null_write(const char *s, uint16_t length)
|
|
{
|
|
}
|
|
|
|
static bool null_suspend_disable (bool suspend)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
static bool null_set_baudrate (uint32_t baud_rate)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
static bool null_enqueue_rt_command (char c)
|
|
{
|
|
return enqueue_realtime_command(c);
|
|
}
|
|
|
|
static enqueue_realtime_command_ptr null_set_rt_handler (enqueue_realtime_command_ptr handler)
|
|
{
|
|
enqueue_realtime_command_ptr prev = enqueue_realtime_command;
|
|
|
|
if(handler)
|
|
enqueue_realtime_command = handler;
|
|
|
|
return prev;
|
|
}
|
|
|
|
const io_stream_t *stream_null_init (uint32_t baud_rate)
|
|
{
|
|
static const io_stream_t stream = {
|
|
.type = StreamType_Null,
|
|
.is_connected = is_connected,
|
|
.read = stream_get_null,
|
|
.write = null_write_string,
|
|
.write_n = null_write,
|
|
.write_char = null_put_c,
|
|
.enqueue_rt_command = null_enqueue_rt_command,
|
|
.get_rx_buffer_free = null_rx_free,
|
|
.get_rx_buffer_count = null_count,
|
|
.get_tx_buffer_count = null_count,
|
|
.reset_write_buffer = dummy_handler,
|
|
.reset_read_buffer = dummy_handler,
|
|
.cancel_read_buffer = dummy_handler,
|
|
.suspend_read = null_suspend_disable,
|
|
.disable_rx = null_suspend_disable,
|
|
.set_baud_rate = null_set_baudrate,
|
|
.set_enqueue_rt_handler = null_set_rt_handler
|
|
};
|
|
|
|
return &stream;
|
|
}
|
|
|
|
#ifdef DEBUGOUT
|
|
|
|
static stream_write_ptr dbg_write = NULL;
|
|
|
|
static void debug_stream_warning (uint_fast16_t state)
|
|
{
|
|
report_message("Failed to initialize debug stream!", Message_Warning);
|
|
}
|
|
|
|
void debug_write (const char *s)
|
|
{
|
|
if(dbg_write) {
|
|
dbg_write(s);
|
|
while(hal.debug.get_tx_buffer_count()); // Wait until message is delivered
|
|
}
|
|
}
|
|
|
|
void debug_writeln (const char *s)
|
|
{
|
|
if(dbg_write) {
|
|
dbg_write(s);
|
|
dbg_write(ASCII_EOL);
|
|
while(hal.debug.get_tx_buffer_count()); // Wait until message is delivered
|
|
}
|
|
}
|
|
|
|
static bool debug_claim_stream (io_stream_properties_t const *stream)
|
|
{
|
|
io_stream_t const *claimed = NULL;
|
|
|
|
if(stream->type == StreamType_Serial && stream->flags.claimable && !stream->flags.claimed) {
|
|
|
|
if(stream->instance == DEBUGOUT && (claimed = stream->claim(115200))) {
|
|
|
|
memcpy(&hal.debug, claimed, sizeof(io_stream_t));
|
|
dbg_write = hal.debug.write;
|
|
hal.debug.write = debug_write;
|
|
|
|
if(hal.periph_port.set_pin_description)
|
|
hal.periph_port.set_pin_description(Output_TX, hal.debug.instance == 0 ? PinGroup_UART : PinGroup_UART2, "Debug out");
|
|
}
|
|
}
|
|
|
|
return claimed != NULL;
|
|
}
|
|
|
|
bool debug_stream_init (void)
|
|
{
|
|
if(stream_enumerate_streams(debug_claim_stream))
|
|
hal.debug.write(ASCII_EOL "UART debug active:" ASCII_EOL);
|
|
else
|
|
protocol_enqueue_rt_command(debug_stream_warning);
|
|
|
|
return hal.debug.write == debug_write;
|
|
}
|
|
|
|
#endif
|