mirror of
https://github.com/grblHAL/core.git
synced 2026-08-17 08:31:43 +08:00
Fix for bug preventing disabling of AMASS, changed the ADAPTIVE_MULTI_AXIS_STEP_SMOOTHING symbol so it can be overridden via compiler argument.
For developers: added output function parameter to signature of report_realtime_status() call to allow routing output to a given stream (or streams).
This commit is contained in:
@@ -138,6 +138,11 @@ ISR_CODE static bool ISR_FUNC(await_toolchange_ack)(char c)
|
||||
return true;
|
||||
}
|
||||
|
||||
stream_suspend_state_t stream_is_rx_suspended (void)
|
||||
{
|
||||
return stream.rxbuffer ? (stream.rxbuffer->backup ? StreamSuspend_Active : StreamSuspend_Pending) : StreamSuspend_Off;
|
||||
}
|
||||
|
||||
bool stream_rx_suspend (stream_rx_buffer_t *rxbuffer, bool suspend)
|
||||
{
|
||||
if(suspend) {
|
||||
|
||||
Reference in New Issue
Block a user