Skip to content

Commit cd4438d

Browse files
committed
Issue 11: Flip front and rear side
1 parent d267dc0 commit cd4438d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ password: temppwd
5454

5555
### Run program
5656
```
57-
./kpi_rover_ecu -a 0.0.0.0 -p 6000
57+
sudo ./kpi_rover_ecu -a 0.0.0.0 -p 6000
5858
```
5959
## Code Style Check and Static Code Analysis
6060

src/kpi_rover_ecu/src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ int main(int argc, char* argv[]) {
5454

5555
MotorController motors_processor;
5656
const uint8_t kMotorNumber = 4;
57-
const std::vector<MotorConfig> kShassisVector = {MotorConfig(1, false), MotorConfig(2, false), MotorConfig(3, true),
58-
MotorConfig(4, true)};
57+
const std::vector<MotorConfig> kShassisVector = {MotorConfig(3, false), MotorConfig(4, false), MotorConfig(1, true),
58+
MotorConfig(2, true)};
5959

6060
motors_processor.Init(kShassisVector, kMotorNumber);
6161
ProtocolHanlder protocol_handler(&motors_processor);

0 commit comments

Comments
 (0)