Skip to content

Commit

Permalink
add new message to be send to refbox for reporting machiens.
Browse files Browse the repository at this point in the history
  • Loading branch information
pkohout committed Apr 19, 2024
1 parent d528c59 commit 5f354a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

group = 'io.github.robocup-logistics'
archivesBaseName = "java-sdk"
version = '0.1.19'
version = '0.1.19.1'

description = ""

Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/rcll/refbox/RefBoxConnectionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ private void registerTeamMsgs() {
privatePeer.add_message(OrderInfoProtos.OrderInfo.class);
privatePeer.add_message(RingInfoProtos.RingInfo.class); // Not documented but sent!
privatePeer.add_message(MachineInfoProtos.MachineInfo.class);
privatePeer.add_message(MachineReportProtos.MachineReportInfo.class);
privatePeer.add_message(MachineReportProtos.MachineReportInfo.class); //this might can be removed!
privatePeer.add_message(MachineReportProtos.MachineReport.class);
privatePeer.add_message(ExplorationInfoProtos.ExplorationInfo.class);
privatePeer.add_message(MachineInstructionProtos.PrepareMachine.class);
privatePeer.add_message(MachineInstructionProtos.ResetMachine.class);
Expand Down

0 comments on commit 5f354a9

Please sign in to comment.