mirror of
https://github.com/grblHAL/core.git
synced 2026-03-24 05:12:31 +08:00
Improved alarm handling, if a critical alarm is active when a non-critical alarm is raised the non-critical alarm will be delayed until after reset for the critical alarm. Improved Modbus exception handling and added high level API call for creating and sending Modbus messages. Added G65P7 inbuilt macro for interacting with Modbus devices from gcode. See the Wiki for details.
946 lines
26 KiB
C
946 lines
26 KiB
C
/*
|
|
stream.c - high level (serial) stream handling
|
|
|
|
Part of grblHAL
|
|
|
|
Copyright (c) 2021-2026 Terje Io
|
|
|
|
grblHAL 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.
|
|
|
|
grblHAL 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 grblHAL. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "hal.h"
|
|
#include "protocol.h"
|
|
#include "state_machine.h"
|
|
|
|
#if defined(DEBUG) || defined(DEBUGOUT)
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#ifndef DEBUG_BUFFER
|
|
#define DEBUG_BUFFER 100
|
|
#endif
|
|
#endif
|
|
|
|
DCRAM 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 mpg_control :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, *prev;
|
|
} stream_connection_t;
|
|
|
|
PROGMEM static const io_stream_properties_t null_stream = {
|
|
.type = StreamType_Null,
|
|
.instance = 0,
|
|
.flags.claimable = On,
|
|
.flags.claimed = Off,
|
|
.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}, *connections = &base;
|
|
static struct {
|
|
io_stream_t stream;
|
|
stream_write_char_ptr write_char;
|
|
stream_connection_flags_t flags;
|
|
on_rt_reports_added_ptr on_rt_reports_added;
|
|
on_gcode_mode_changed_ptr on_gcode_mode_changed;
|
|
} mpg;
|
|
|
|
FLASHMEM void stream_register_streams (io_stream_details_t *details)
|
|
{
|
|
if(details->n_streams) {
|
|
details->next = streams;
|
|
streams = details;
|
|
}
|
|
}
|
|
|
|
FLASHMEM bool stream_enumerate_streams (stream_enumerate_callback_ptr callback, void *data)
|
|
{
|
|
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], data)))
|
|
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
|
|
int32_t stream_get_null (void)
|
|
{
|
|
return SERIAL_NO_DATA;
|
|
}
|
|
|
|
FLASHMEM const io_stream_status_t *stream_get_uart_status (uint8_t instance)
|
|
{
|
|
const io_stream_status_t *status = NULL;
|
|
|
|
io_stream_details_t *details = streams;
|
|
|
|
while(details) {
|
|
uint_fast8_t idx;
|
|
for(idx = 0; idx < details->n_streams; idx++) {
|
|
if(details->streams[idx].instance == instance &&
|
|
stream_is_uart(details->streams[idx].type)) {
|
|
if(details->streams[idx].get_status)
|
|
status = details->streams[idx].get_status(instance);
|
|
break;
|
|
}
|
|
}
|
|
details = details->next;
|
|
};
|
|
|
|
return status;
|
|
}
|
|
|
|
ISR_CODE static bool ISR_FUNC(await_toolchange_ack)(uint8_t 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;
|
|
}
|
|
|
|
FLASHMEM stream_suspend_state_t stream_is_rx_suspended (void)
|
|
{
|
|
return stream.rxbuffer ? (stream.rxbuffer->backup ? StreamSuspend_Active : StreamSuspend_Pending) : StreamSuspend_Off;
|
|
}
|
|
|
|
FLASHMEM bool stream_rx_suspend (stream_rx_buffer_t *rxbuffer, bool suspend)
|
|
{
|
|
bool ok = false;
|
|
|
|
if(suspend) {
|
|
if((ok = stream.rxbuffer == NULL /* ?? && rxbuffer->tail != rxbuffer->head */)) {
|
|
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((ok = 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 ok;
|
|
}
|
|
|
|
ISR_CODE bool ISR_FUNC(stream_buffer_all)(uint8_t c)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
ISR_CODE bool ISR_FUNC(stream_enqueue_realtime_command)(uint8_t 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) && state_get() == STATE_IDLE)
|
|
report_add_realtime(Report_CycleStart);
|
|
|
|
return drop;
|
|
}
|
|
|
|
// helper function for (UART) stream implementations.
|
|
|
|
bool stream_connected (void)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
static bool is_not_connected (void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
FLASHMEM 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;
|
|
}
|
|
}
|
|
|
|
FLASHMEM 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;
|
|
}
|
|
}
|
|
connection->prev = last;
|
|
last->next = connection;
|
|
}
|
|
|
|
connection->is_up = stream->is_connected ?
|
|
stream->is_connected :
|
|
(stream->state.is_usb && base.stream != stream ? is_not_connected : stream_connected);
|
|
|
|
return connection;
|
|
}
|
|
|
|
FLASHMEM static bool stream_select (const io_stream_t *stream, bool add)
|
|
{
|
|
static const io_stream_t *active_stream = NULL;
|
|
|
|
bool send_init_message = false, mpg_enable = false;
|
|
static struct {
|
|
const io_stream_t *stream;
|
|
on_linestate_changed_ptr on_linestate_changed;
|
|
} usb = {};
|
|
|
|
if(stream == base.stream) {
|
|
base.is_up = add ? (stream->is_connected ? stream->is_connected : stream_connected) : is_not_connected;
|
|
return true;
|
|
}
|
|
|
|
if(active_stream != NULL && hal.stream.state.is_usb) {
|
|
usb.stream = active_stream;
|
|
usb.on_linestate_changed = hal.stream.on_linestate_changed;
|
|
}
|
|
|
|
if(!add) { // disconnect
|
|
|
|
if(stream == base.stream || stream == &mpg.stream)
|
|
return false;
|
|
|
|
bool disconnected = false;
|
|
stream_connection_t *connection = connections->next;
|
|
|
|
while(connection) {
|
|
if(stream == connection->stream) {
|
|
if((connection->prev->next = connection->next))
|
|
connection->next->prev = connection->prev;
|
|
if((stream = connection->prev->stream) == &mpg.stream) {
|
|
mpg_enable = mpg.flags.mpg_control;
|
|
if((stream = connection->prev->prev->stream) == NULL)
|
|
stream = base.stream;
|
|
}
|
|
free(connection);
|
|
connection = NULL;
|
|
disconnected = true;
|
|
} else
|
|
connection = connection->next;
|
|
}
|
|
|
|
if(!disconnected)
|
|
return false;
|
|
|
|
} else if(add_connection(stream) == NULL)
|
|
return false;
|
|
|
|
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);
|
|
if(stream->get_tx_buffer_count)
|
|
while(stream->get_tx_buffer_count());
|
|
else
|
|
hal.delay_ms(100, NULL);
|
|
}
|
|
break;
|
|
|
|
case StreamType_Telnet:
|
|
if(connection_is_up(&hal.stream))
|
|
report_message("TELNET STREAM ACTIVE", Message_Plain);
|
|
send_init_message = add && sys.driver_started;
|
|
break;
|
|
|
|
case StreamType_WebSocket:
|
|
if(connection_is_up(&hal.stream))
|
|
report_message("WEBSOCKET STREAM ACTIVE", Message_Plain);
|
|
send_init_message = add && sys.driver_started && !hal.stream.state.webui_connected;
|
|
break;
|
|
|
|
case StreamType_Bluetooth:
|
|
if(connection_is_up(&hal.stream))
|
|
report_message("BLUETOOTH STREAM ACTIVE", Message_Plain);
|
|
send_init_message = add && sys.driver_started;
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if(hal.stream.type == StreamType_MPG) {
|
|
stream_mpg_enable(false);
|
|
mpg.flags.mpg_control = On;
|
|
} else if(mpg_enable)
|
|
task_add_immediate(stream_mpg_set_mode, (void *)1);
|
|
|
|
memcpy(&hal.stream, stream, sizeof(io_stream_t));
|
|
|
|
if(stream == usb.stream)
|
|
hal.stream.on_linestate_changed = usb.on_linestate_changed;
|
|
|
|
if(stream == base.stream && base.is_up == is_not_connected)
|
|
base.is_up = stream_connected;
|
|
|
|
if(hal.stream.is_connected == NULL)
|
|
hal.stream.is_connected = stream == base.stream ? base.is_up : stream_connected;
|
|
|
|
if(send_init_message)
|
|
grbl.report.init_message(stream->write);
|
|
|
|
hal.stream.write_all = stream_write_all;
|
|
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;
|
|
}
|
|
|
|
FLASHMEM const io_stream_t *stream_get_base (void)
|
|
{
|
|
return base.stream;
|
|
}
|
|
|
|
FLASHMEM 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;
|
|
}
|
|
|
|
FLASHMEM bool stream_set_description (const io_stream_t *stream, const char *description)
|
|
{
|
|
bool ok;
|
|
|
|
if((ok = stream->type == StreamType_Serial && !stream->state.is_usb && hal.periph_port.set_pin_description)) {
|
|
hal.periph_port.set_pin_description(Output_TX, (pin_group_t)(PinGroup_UART + stream->instance), description);
|
|
hal.periph_port.set_pin_description(Input_RX, (pin_group_t)(PinGroup_UART + stream->instance), description);
|
|
}
|
|
|
|
return ok;
|
|
}
|
|
|
|
FLASHMEM bool stream_connect (const io_stream_t *stream)
|
|
{
|
|
bool ok;
|
|
|
|
if((ok = stream && stream_select(stream, true)))
|
|
stream_set_description(stream, "Primary UART");
|
|
|
|
return ok;
|
|
}
|
|
|
|
typedef struct {
|
|
uint8_t instance;
|
|
uint32_t baud_rate;
|
|
io_stream_t const *stream;
|
|
} connection_t;
|
|
|
|
FLASHMEM static bool _open_instance (io_stream_properties_t const *stream, void *data)
|
|
{
|
|
connection_t *connection = (connection_t *)data;
|
|
|
|
if(stream_is_uart(stream->type) &&
|
|
(connection->instance == 255 || stream->instance == connection->instance) &&
|
|
stream->flags.claimable && !stream->flags.claimed)
|
|
connection->stream = stream->claim(connection->baud_rate);
|
|
|
|
return connection->stream != NULL;
|
|
}
|
|
|
|
FLASHMEM bool stream_connect_instance (uint8_t instance, uint32_t baud_rate)
|
|
{
|
|
connection_t connection = {
|
|
.instance = instance,
|
|
.baud_rate = baud_rate
|
|
};
|
|
|
|
return stream_enumerate_streams(_open_instance, &connection) && stream_connect(connection.stream);
|
|
}
|
|
|
|
FLASHMEM void stream_disconnect (const io_stream_t *stream)
|
|
{
|
|
if(stream)
|
|
stream_select(stream, false);
|
|
}
|
|
|
|
FLASHMEM io_stream_t const *stream_open_instance (uint8_t instance, uint32_t baud_rate, stream_write_char_ptr rx_handler, const char *description)
|
|
{
|
|
connection_t connection = {
|
|
.instance = instance,
|
|
.baud_rate = baud_rate
|
|
};
|
|
|
|
if(stream_enumerate_streams(_open_instance, &connection)) {
|
|
connection.stream->set_enqueue_rt_handler(rx_handler);
|
|
if(description)
|
|
stream_set_description(connection.stream, description);
|
|
}
|
|
|
|
return connection.stream;
|
|
}
|
|
|
|
FLASHMEM bool stream_close (io_stream_t const *stream)
|
|
{
|
|
bool released = false;
|
|
io_stream_details_t *details = streams;
|
|
|
|
if(stream->type == StreamType_Serial && (details = streams) && !(stream == base.stream || stream == &mpg.stream)) do {
|
|
uint_fast8_t idx;
|
|
for(idx = 0; idx < details->n_streams; idx++) {
|
|
if(details->streams[idx].type == stream->type && details->streams[idx].instance == stream->instance) {
|
|
if(details->streams[idx].release) {
|
|
if(stream->disable_rx)
|
|
stream->disable_rx(true);
|
|
released = details->streams[idx].release(stream->instance);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
} while((details = details->next));
|
|
|
|
return released;
|
|
}
|
|
|
|
// UART style streams
|
|
|
|
FLASHMEM void stream_set_defaults (const io_stream_t *stream, uint32_t baud_rate)
|
|
{
|
|
stream->set_enqueue_rt_handler(protocol_enqueue_realtime_command);
|
|
|
|
if(stream->set_baud_rate)
|
|
stream->set_baud_rate(baud_rate);
|
|
|
|
if(stream->set_format)
|
|
stream->set_format((serial_format_t){ .width = Serial_8bit, .stopbits = Serial_StopBits1, .parity = Serial_ParityNone });
|
|
|
|
if(stream->disable_rx)
|
|
stream->disable_rx(false);
|
|
|
|
if(stream->reset_write_buffer)
|
|
stream->reset_write_buffer();
|
|
|
|
stream->reset_read_buffer();
|
|
}
|
|
|
|
// MPG stream
|
|
|
|
ISR_CODE static void mpg_rt_report_add (report_tracking_flags_t report)
|
|
{
|
|
if(mpg.on_rt_reports_added)
|
|
mpg.on_rt_reports_added(report);
|
|
|
|
if(report.value == 0)
|
|
mpg.stream.report.flags.value = 0;
|
|
else
|
|
mpg.stream.report.flags.value |= report.value;
|
|
}
|
|
|
|
FLASHMEM static void mpg_gcode_mode_changed (void)
|
|
{
|
|
if(mpg.on_gcode_mode_changed)
|
|
mpg.on_gcode_mode_changed();
|
|
|
|
if(hal.stream.type != StreamType_MPG)
|
|
report_gcode_modes(mpg.stream.write);
|
|
}
|
|
|
|
FLASHMEM void stream_mpg_set_mode (void *data)
|
|
{
|
|
stream_mpg_enable(data != NULL);
|
|
}
|
|
|
|
static void stream_mpg_write (void *cmd)
|
|
{
|
|
switch((uintptr_t)cmd) {
|
|
|
|
case CMD_STATUS_REPORT_ALL:
|
|
mpg.stream.report.flags.value = report_get_rt_flags_all().value;
|
|
// no break
|
|
case CMD_STATUS_REPORT:
|
|
case CMD_STATUS_REPORT_LEGACY:
|
|
report_realtime_status(mpg.stream.write, &mpg.stream.report);
|
|
break;
|
|
|
|
case CMD_GCODE_REPORT:
|
|
report_gcode_modes(mpg.stream.write);
|
|
break;
|
|
}
|
|
}
|
|
|
|
ISR_CODE bool ISR_FUNC(stream_mpg_check_enable)(uint8_t c)
|
|
{
|
|
switch(c) {
|
|
|
|
case CMD_MPG_MODE_TOGGLE:
|
|
task_add_immediate(stream_mpg_set_mode, (void *)1);
|
|
break;
|
|
|
|
case CMD_GCODE_REPORT:
|
|
case CMD_STATUS_REPORT:
|
|
case CMD_STATUS_REPORT_LEGACY:
|
|
case CMD_STATUS_REPORT_ALL:
|
|
if(mpg.flags.is_mpg_tx)
|
|
task_add_immediate(stream_mpg_write, (void *)((uintptr_t)c));
|
|
break;
|
|
|
|
default:
|
|
protocol_enqueue_realtime_command(c);
|
|
if((c == CMD_CYCLE_START || c == CMD_CYCLE_START_LEGACY) && state_get() == STATE_IDLE)
|
|
report_add_realtime(Report_CycleStart);
|
|
break;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
FLASHMEM bool stream_mpg_register (const io_stream_t *stream, bool rx_only, stream_write_char_ptr write_char)
|
|
{
|
|
if(stream == NULL || !stream_is_uart(stream->type) || stream->disable_rx == NULL)
|
|
return false;
|
|
|
|
// base.flags.is_up = On;
|
|
|
|
memcpy(&mpg.stream, stream, sizeof(io_stream_t));
|
|
|
|
mpg.write_char = write_char;
|
|
|
|
if(stream->write == NULL || rx_only) {
|
|
|
|
mpg.stream.is_connected = stream_connected;
|
|
|
|
if(hal.periph_port.set_pin_description)
|
|
hal.periph_port.set_pin_description(Input_RX, (pin_group_t)(PinGroup_UART + stream->instance), "MPG");
|
|
|
|
if(grbl.on_mpg_registered)
|
|
grbl.on_mpg_registered(&mpg.stream, false);
|
|
|
|
return true;
|
|
}
|
|
|
|
stream_connection_t *connection = add_connection(&mpg.stream);
|
|
|
|
if(connection) {
|
|
|
|
mpg.flags.is_mpg_tx = On;
|
|
mpg.flags.mpg_control = Off;
|
|
|
|
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;
|
|
|
|
stream_set_description(stream, "MPG");
|
|
|
|
mpg.on_rt_reports_added = grbl.on_rt_reports_added;
|
|
grbl.on_rt_reports_added = mpg_rt_report_add;
|
|
|
|
mpg.on_gcode_mode_changed = grbl.on_gcode_mode_changed;
|
|
grbl.on_gcode_mode_changed = mpg_gcode_mode_changed;
|
|
|
|
if(grbl.on_mpg_registered)
|
|
grbl.on_mpg_registered(&mpg.stream, true);
|
|
}
|
|
|
|
return connection != NULL;
|
|
}
|
|
|
|
FLASHMEM static void report_mpg_mode (void *data)
|
|
{
|
|
protocol_enqueue_realtime_command((uint8_t)((uintptr_t)data));
|
|
}
|
|
|
|
FLASHMEM bool stream_mpg_enable (bool on)
|
|
{
|
|
static io_stream_t org_stream = {
|
|
.type = StreamType_Redirected
|
|
};
|
|
|
|
if(mpg.stream.read == 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)))))) {
|
|
task_add_delayed(report_mpg_mode, (void *)CMD_STATUS_REPORT_ALL, 5);
|
|
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);
|
|
hal.stream.type = StreamType_MPG;
|
|
hal.stream.read = mpg.stream.read;
|
|
mpg.stream.disable_rx(false);
|
|
mpg.stream.set_enqueue_rt_handler(hal.stream.set_enqueue_rt_handler(NULL));
|
|
if(mpg.flags.is_mpg_tx) {
|
|
hal.stream.write = mpg.stream.write;
|
|
hal.stream.write_n = mpg.stream.write_n;
|
|
hal.stream.write_char = mpg.stream.write_char;
|
|
}
|
|
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) {
|
|
memcpy(&hal.stream, &org_stream, sizeof(io_stream_t));
|
|
org_stream.type = StreamType_Redirected;
|
|
mpg.stream.report.override_counter = mpg.stream.report.wco_counter = 0;
|
|
if(hal.stream.disable_rx)
|
|
hal.stream.disable_rx(false);
|
|
if(mpg.write_char)
|
|
mpg.stream.set_enqueue_rt_handler(mpg.write_char);
|
|
else
|
|
mpg.stream.disable_rx(true);
|
|
}
|
|
|
|
hal.stream.reset_read_buffer();
|
|
|
|
sys.mpg_mode = on;
|
|
mpg.flags.mpg_control = Off;
|
|
report_add_realtime(Report_MPGMode);
|
|
|
|
// Force a realtime status report, all reports when MPG mode active
|
|
task_add_delayed(report_mpg_mode, (void *)((uintptr_t)(on ? CMD_STATUS_REPORT_ALL : CMD_STATUS_REPORT)), 5);
|
|
|
|
return true;
|
|
}
|
|
|
|
// null stream, discards output and returns no input
|
|
|
|
static enqueue_realtime_command_ptr enqueue_realtime_command = protocol_enqueue_realtime_command;
|
|
|
|
FLASHMEM static uint16_t null_rx_free (void)
|
|
{
|
|
return RX_BUFFER_SIZE;
|
|
}
|
|
|
|
FLASHMEM static uint16_t null_count (void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
FLASHMEM static bool null_put_c (const uint8_t c)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
FLASHMEM static void null_write_string (const char *s)
|
|
{
|
|
}
|
|
|
|
FLASHMEM static void null_write(const uint8_t *s, uint16_t length)
|
|
{
|
|
}
|
|
|
|
FLASHMEM static bool null_suspend_disable (bool suspend)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
FLASHMEM static bool null_set_baudrate (uint32_t baud_rate)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
FLASHMEM static bool null_enqueue_rt_command (uint8_t c)
|
|
{
|
|
return enqueue_realtime_command(c);
|
|
}
|
|
|
|
FLASHMEM 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;
|
|
}
|
|
|
|
FLASHMEM const io_stream_t *stream_null_init (uint32_t baud_rate)
|
|
{
|
|
PROGMEM static const io_stream_t stream = {
|
|
.type = StreamType_Null,
|
|
.is_connected = stream_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
|
|
|
|
#if DEBUGOUT == -1
|
|
|
|
__attribute__((weak)) void debug_write (const char *s)
|
|
{
|
|
// NOOP
|
|
}
|
|
|
|
void debug_writeln (const char *s)
|
|
{
|
|
debug_write(s);
|
|
debug_write(ASCII_EOL);
|
|
}
|
|
|
|
void debug_printf (const char *fmt, ...)
|
|
{
|
|
char debug_out[DEBUG_BUFFER];
|
|
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
vsnprintf(debug_out, sizeof(debug_out) - 1, fmt, args);
|
|
va_end(args);
|
|
|
|
debug_writeln(debug_out);
|
|
}
|
|
|
|
bool debug_stream_init (void)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
#else
|
|
|
|
static stream_write_ptr dbg_write = NULL;
|
|
|
|
void debug_write (const char *s)
|
|
{
|
|
if(dbg_write) {
|
|
dbg_write(s);
|
|
while(hal.debug.get_tx_buffer_count()) // Wait until message is delivered
|
|
grbl.on_execute_realtime(state_get());
|
|
}
|
|
}
|
|
|
|
void debug_writeln (const char *s)
|
|
{
|
|
static volatile bool lock = false;
|
|
|
|
if(!lock && dbg_write) {
|
|
|
|
lock = true;
|
|
|
|
dbg_write(s);
|
|
dbg_write(ASCII_EOL);
|
|
|
|
while(hal.debug.get_tx_buffer_count()) // Wait until message is delivered
|
|
grbl.on_execute_realtime(state_get());
|
|
|
|
lock = false;
|
|
}
|
|
}
|
|
|
|
void debug_printf (const char *fmt, ...)
|
|
{
|
|
char debug_out[DEBUG_BUFFER];
|
|
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
vsnprintf(debug_out, sizeof(debug_out) - 1, fmt, args);
|
|
va_end(args);
|
|
|
|
debug_writeln(debug_out);
|
|
}
|
|
|
|
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, (pin_group_t)(PinGroup_UART + hal.debug.instance), "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
|
|
task_run_on_startup(report_warning, "Failed to initialize debug stream!");
|
|
|
|
return hal.debug.write == debug_write;
|
|
}
|
|
|
|
#endif // DEBUGOUT
|
|
|
|
#elif defined(DEBUG)
|
|
|
|
void debug_printf (const char *fmt, ...)
|
|
{
|
|
char debug_out[DEBUG_BUFFER];
|
|
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
vsnprintf(debug_out, sizeof(debug_out) - 1, fmt, args);
|
|
va_end(args);
|
|
|
|
if(hal.stream.write) {
|
|
report_message(debug_out, Message_Debug);
|
|
if(hal.stream.get_tx_buffer_count) {
|
|
while(hal.stream.get_tx_buffer_count()) // Wait until message is delivered
|
|
grbl.on_execute_realtime(state_get());
|
|
}
|
|
}
|
|
}
|
|
|
|
#else
|
|
|
|
FLASHMEM void debug_printf (const char *fmt, ...)
|
|
{
|
|
// NOOP
|
|
}
|
|
|
|
#endif
|