mirror of
https://github.com/grblHAL/core.git
synced 2026-03-23 20:54:26 +08:00
The change is major and potentially dangerous, it may damage your probe, so please verify correct operation after installing. Fix for STM32F4xx issue 161, Ethernet connection unresponsive if USB port not powered. Enhanced ioPorts interface: New debounce option for input pins that are interrupt capable, currently only possible to enable via plugin code - later to be made available via a $-setting. Added some wrapper functions for simpler plugin code++ Added simple task scheduler to the core, allows interrupt routines to dispatch jobs to the foreground process, delayed tasks and repeating tasks attached to the 1 ms system timer. Some drivers and plugins now uses the scheduler for input pin debouncing, regular polling etc. The core uses it for stepper disabling and sleep monitoring.
152 lines
3.9 KiB
C
152 lines
3.9 KiB
C
/*
|
|
crossbar.h - signal crossbar functions
|
|
|
|
Part of grblHAL
|
|
|
|
Copyright (c) 2023-2024 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 "hal.h"
|
|
|
|
static limit_signals_t home_source = {0};
|
|
|
|
axes_signals_t xbar_fn_to_axismask (pin_function_t fn)
|
|
{
|
|
axes_signals_t mask = {0};
|
|
|
|
switch(fn) {
|
|
|
|
case Input_LimitX:
|
|
case Input_LimitX_Max:
|
|
case Input_LimitX_2:
|
|
case Input_HomeX:
|
|
mask.x = On;
|
|
break;
|
|
|
|
case Input_LimitY:
|
|
case Input_LimitY_Max:
|
|
case Input_LimitY_2:
|
|
case Input_HomeY:
|
|
mask.y = On;
|
|
break;
|
|
|
|
case Input_LimitZ:
|
|
case Input_LimitZ_Max:
|
|
case Input_LimitZ_2:
|
|
case Input_HomeZ:
|
|
mask.z = On;
|
|
break;
|
|
|
|
#if N_AXIS > 3
|
|
case Input_LimitA:
|
|
case Input_LimitA_Max:
|
|
case Input_HomeA:
|
|
mask.a = On;
|
|
break;
|
|
#endif
|
|
#if N_AXIS > 4
|
|
case Input_LimitB:
|
|
case Input_LimitB_Max:
|
|
case Input_HomeB:
|
|
mask.b = On;
|
|
break;
|
|
#endif
|
|
#if N_AXIS > 5
|
|
case Input_LimitC:
|
|
case Input_LimitC_Max:
|
|
case Input_HomeC:
|
|
mask.c = On;
|
|
break;
|
|
#endif
|
|
#if N_AXIS > 6
|
|
case Input_LimitU:
|
|
case Input_LimitU_Max:
|
|
case Input_HomeU:
|
|
mask.u = On;
|
|
break;
|
|
#endif
|
|
#if N_AXIS == 8
|
|
case Input_LimitV:
|
|
case Input_LimitV_Max:
|
|
case Input_HomeV:
|
|
mask.v = On;
|
|
break;
|
|
#endif
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return mask;
|
|
}
|
|
|
|
// Sets limit signals used by homing when home signals are not available.
|
|
// For internal use, called by settings.c when homing direction mask is changed.
|
|
void xbar_set_homing_source (void)
|
|
{
|
|
if(hal.home_cap.a.mask == 0) {
|
|
home_source.max.mask = hal.limits_cap.max.mask & ((~settings.homing.dir_mask.mask) & AXES_BITMASK);
|
|
home_source.min.mask = (~home_source.max.mask) & AXES_BITMASK;
|
|
home_source.max2.mask = hal.limits_cap.max2.mask & ((~settings.homing.dir_mask.mask) & AXES_BITMASK);
|
|
home_source.min2.mask = (~home_source.max2.mask) & AXES_BITMASK;
|
|
}
|
|
}
|
|
|
|
// Returns limit signals used by homing when home signals are not available.
|
|
limit_signals_t xbar_get_homing_source (void)
|
|
{
|
|
return home_source;
|
|
}
|
|
|
|
// Returns limit signals used by homing cycle when home signals are not available.
|
|
limit_signals_t xbar_get_homing_source_from_cycle (axes_signals_t homing_cycle)
|
|
{
|
|
limit_signals_t source = home_source;
|
|
|
|
if(hal.home_cap.a.mask == 0) {
|
|
source.min.mask &= homing_cycle.mask;
|
|
source.min2.mask &= homing_cycle.mask;
|
|
source.min.mask |= source.min2.mask;
|
|
source.max.mask &= homing_cycle.mask;
|
|
source.max2.mask &= homing_cycle.mask;
|
|
source.max.mask |= source.max2.mask;
|
|
}
|
|
|
|
return source;
|
|
}
|
|
|
|
const char *xbar_fn_to_pinname (pin_function_t fn)
|
|
{
|
|
const char *name = NULL;
|
|
uint_fast8_t idx = sizeof(pin_names) / sizeof(pin_name_t);
|
|
|
|
do {
|
|
if(pin_names[--idx].function == fn)
|
|
name = pin_names[idx].name;
|
|
} while(idx && !name);
|
|
|
|
return name ? name : "N/A";
|
|
}
|
|
|
|
control_signals_t xbar_fn_to_signals_mask (pin_function_t fn)
|
|
{
|
|
control_signals_t signals;
|
|
|
|
signals.mask = fn >= Input_Probe ? 0 : 1 << (uint32_t)fn;
|
|
|
|
return signals;
|
|
}
|