Skip to content

Commit

Permalink
Merge pull request #50 from dfki-ric/devel
Browse files Browse the repository at this point in the history
fix virtual_joystick increment setting
  • Loading branch information
planthaber authored Sep 2, 2024
2 parents 3c61827 + df5e54a commit 6974260
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
5.0.1 - Fix virtual_joystick increment setting
5.0.0 - Channel support
4.0.0 - added CLI, api change fpr simpleactions
3.0.0 - consistend use of a header type for metadata in telemetry
Expand Down
2 changes: 1 addition & 1 deletion src/CLI/VirtualJoystick.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ class VirtualJoystick
increment_+=increment_;
break;
case '-':
increment_-=increment_;
increment_-=increment_/2.0;
break;
default:
highlightButton("arrowRight", false);
Expand Down
1 change: 0 additions & 1 deletion src/ControlledRobot/ControlledRobot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,6 @@ ControlMessageType ControlledRobot::handleCommandRequest(const ControlMessageTyp
}

ControlMessageType ControlledRobot::handleVersionRequest(const MessageId& msgid, TransportSharedPtr commandTransport) {
printf("%s:%i\n", __PRETTY_FUNCTION__, __LINE__);
std::string msg = "";
MessageIdCommandBuffer* cmdbuffer = dynamic_cast<MessageIdCommandBuffer*>(commandbuffers[msgid]);
if (cmdbuffer) {
Expand Down

0 comments on commit 6974260

Please sign in to comment.