mirror of
https://github.com/synthetos/g2.git
synced 2026-09-23 12:14:09 +08:00
Fixed typo in settings_default.h; fixed bug in B and C axes mapping in plan_line.cpp
This commit is contained in:
@@ -68,7 +68,7 @@
|
||||
<com_atmel_avrdbg_tool_atmelice>
|
||||
<ToolOptions>
|
||||
<InterfaceProperties>
|
||||
<SwdClock>2000000</SwdClock>
|
||||
<SwdClock>10000000</SwdClock>
|
||||
</InterfaceProperties>
|
||||
<InterfaceName>SWD</InterfaceName>
|
||||
</ToolOptions>
|
||||
@@ -102,7 +102,7 @@
|
||||
<preserveEEPROM>true</preserveEEPROM>
|
||||
<avrtoolserialnumber>J41800019454</avrtoolserialnumber>
|
||||
<avrdeviceexpectedsignature>0x284E0A60</avrdeviceexpectedsignature>
|
||||
<avrtoolinterfaceclock>2000000</avrtoolinterfaceclock>
|
||||
<avrtoolinterfaceclock>10000000</avrtoolinterfaceclock>
|
||||
<custom>
|
||||
<ToolOptions xmlns="">
|
||||
<InterfaceProperties>
|
||||
|
||||
@@ -190,7 +190,7 @@ stat_t mp_aline(GCodeState_t* _gm)
|
||||
// copy rotation axes for ABC (no changes)
|
||||
target_rotated[AXIS_A] = _gm->target[AXIS_A];
|
||||
target_rotated[AXIS_B] = _gm->target[AXIS_B];
|
||||
target_rotated[AXIS_B] = _gm->target[AXIS_C];
|
||||
target_rotated[AXIS_C] = _gm->target[AXIS_C];
|
||||
|
||||
for (uint8_t axis = 0; axis < AXES; axis++) {
|
||||
axis_length[axis] = target_rotated[axis] - mp->position[axis];
|
||||
|
||||
@@ -582,7 +582,7 @@
|
||||
#define V_LATCH_BACKOFF 4.0
|
||||
#endif
|
||||
#ifndef V_ZERO_BACKOFF
|
||||
#define Y_ZERO_BACKOFF 2.0
|
||||
#define V_ZERO_BACKOFF 2.0
|
||||
#endif
|
||||
|
||||
// W AXIS
|
||||
|
||||
Reference in New Issue
Block a user