Skip to content

Commit

Permalink
Merge pull request #41 from westonrobot/feature-update_protocol
Browse files Browse the repository at this point in the history
Feature update protocol
  • Loading branch information
hanskw-weston authored Nov 9, 2023
2 parents a9afc48 + aed0f17 commit ae2a120
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5.1)
project(ugv_sdk VERSION 0.4.0)
project(ugv_sdk VERSION 0.5.0)

find_program(CCACHE_PROGRAM ccache)
if(CCACHE_PROGRAM)
Expand Down
6 changes: 3 additions & 3 deletions include/ugv_sdk/details/interface/agilex_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ typedef enum {
} AgxVehicleState;

typedef enum {
// CONTROL_MODE_STANDBY = 0x00,
CONTROL_MODE_RC = 0x00,
CONTROL_MODE_STANDBY = 0x00,
CONTROL_MODE_CAN = 0x01,
CONTROL_MODE_UART = 0x02
CONTROL_MODE_UART = 0x02,
CONTROL_MODE_RC = 0x03
} AgxControlMode;

typedef enum {
Expand Down

0 comments on commit ae2a120

Please sign in to comment.