Skip to content

Commit 07715e0

Browse files
authored
Fix robot message type POPUP (#335)
Before it was using the name PROGRAM_STATE_MESSAGE_VARIABLE_UPDATE As far as I can see that error has been there for all eternity, but that type es never used anywhere. Strictly speaking, this would be breaking API, but the old naming was clearly wrong, so users should not rely on that faulty behavior. Also parsing that type is not implemented in the library, so this is most probably not used by anybody. That would be my argument to make that change without major-bumping the library. @urrsk @urmahp would you agree?
1 parent d2c899b commit 07715e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/ur_client_library/primary/robot_message.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ enum class RobotMessagePackageType : uint8_t
4242
{
4343
ROBOT_MESSAGE_TEXT = 0,
4444
ROBOT_MESSAGE_PROGRAM_LABEL = 1,
45-
PROGRAM_STATE_MESSAGE_VARIABLE_UPDATE = 2,
45+
ROBOT_MESSAGE_POPUP = 2,
4646
ROBOT_MESSAGE_VERSION = 3,
4747
ROBOT_MESSAGE_SAFETY_MODE = 5,
4848
ROBOT_MESSAGE_ERROR_CODE = 6,

0 commit comments

Comments
 (0)