Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
visose committed Dec 12, 2022
1 parent fa9b238 commit 95d75ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Robots</Product>
<Version>1.6.1</Version>
<Version>1.6.2</Version>
<Authors>Robots Authors</Authors>
<Description>Create and simulate ABB, KUKA, UR, and Staubli robot programs.</Description>
<PackageTags>Robots;ABB;KUKA;UR;Staubli;Robotics</PackageTags>
Expand Down
4 changes: 4 additions & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- version: 1.6.2
changes:
- Franka Emika fixes

- version: 1.6.1
changes:
- Fixed KRL custom external and speeds
Expand Down
5 changes: 2 additions & 3 deletions src/Robots/PostProcessors/FrankxPostProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def program():
"
};

//robot.set_dynamic_rel(0.2)
// Attribute declarations
var attributes = _program.Attributes;

Expand Down Expand Up @@ -130,11 +129,11 @@ def program():
switch (currentMotion)
{
case Motions.Joint:
//throw new("Joint catesian motions not supported in Franka Emika");
throw new(" Joint catesian motions not supported in Franka Emika");
case Motions.Linear:
break;
default:
throw new NotSupportedException($"Motion {currentMotion} not supported");
throw new NotSupportedException($" Motion {currentMotion} not supported");
}
}

Expand Down

0 comments on commit 95d75ce

Please sign in to comment.