Skip to content

Commit

Permalink
EmcStatusMotion: add support for extended G54.1 origins
Browse files Browse the repository at this point in the history
  • Loading branch information
machinekoder committed Jun 20, 2022
1 parent 4cadfce commit 3d1d410
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
PROJECT = "machinetalk"
PROJECT_NAME = "%s-protobuf" % PROJECT
DESCRIPTION = "Protobuf Python modules for %s" % PROJECT
VERSION = "1.2.0"
VERSION = "1.2.1"
AUTHOR = "Alexander Roessler"
AUTHOR_EMAIL = "[email protected]"
PROJECT_URL = "https://github.com/machinekit/%s" % PROJECT_NAME
Expand Down
1 change: 1 addition & 0 deletions src/machinetalk/protobuf/status.proto
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@ message EmcStatusMotion {
optional double rapidrate = 50; /// Current rapid override.
repeated EmcStatusMotionJoint joint = 51; /// Per joint motion values.
repeated EmcStatusMotionSpindle spindle = 52; /// Per spindle motion values.
optional int32 g5x_index_extended = 53; /// Currently active coordinate system, extended index.
}

/**
Expand Down
1 change: 1 addition & 0 deletions src/machinetalk/protobuf/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,7 @@ enum OriginIndex {
ORIGIN_G59_1 = 7;
ORIGIN_G59_2 = 8;
ORIGIN_G59_3 = 9;
ORIGIN_G54_1 = 10; /// extended origin
}


Expand Down

0 comments on commit 3d1d410

Please sign in to comment.