Skip to content

Commit 36ee5e0

Browse files
UFUF
authored andcommitted
V3.1.4 Support grove ultrasonic(use D8 port)
1 parent 8dc00ce commit 36ee5e0

File tree

16 files changed

+203
-548
lines changed

16 files changed

+203
-548
lines changed

.travis.yml

Lines changed: 0 additions & 380 deletions
This file was deleted.

Marlin/Configuration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
//#define SWIFT_TEST_MODE
132132

133133
#define HW_VER "3.3"
134-
#define SW_VER_BASE "3.1.3"
134+
#define SW_VER_BASE "3.1.4"
135135

136136
#ifdef SWIFT_TEST_MODE
137137
#define SW_VER SW_VER_BASE"_t"

Marlin/Marlin_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1818,7 +1818,7 @@ unsigned char inverse_kinematics(const float in_cartesian[3], float angle[3]) {
18181818

18191819
if (x < 0.1)
18201820
{
1821-
return -1;
1821+
x = 0.1;
18221822
}
18231823

18241824
// Calculate value of theta 1: the rotation angle

0 commit comments

Comments
 (0)