Skip to content

Commit

Permalink
Correcting error in SYSTEM_COMMAND_NO_REPLY constant
Browse files Browse the repository at this point in the history
  • Loading branch information
scott committed Aug 16, 2014
1 parent ebaad0c commit 2d33041
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ev3/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ module CommandType

# Direct command
DIRECT_COMMAND = 0x00
DIRECT_COMMAND_NO_REPLY = 0x80 | WITHOUT_REPLY
DIRECT_COMMAND_NO_REPLY = DIRECT_COMMAND | WITHOUT_REPLY
# System command.
SYSTEM_COMMAND = 0x01
SYSTEM_COMMAND_NO_REPLY = 0x80 | WITHOUT_REPLY
SYSTEM_COMMAND_NO_REPLY = SYSTEM_COMMAND | WITHOUT_REPLY
# Direct command reply.
DIRECT_REPLY = 0x02
# System command reply.
Expand Down

0 comments on commit 2d33041

Please sign in to comment.