Skip to content

Commit 7712f29

Browse files
committed
update tools and README
1 parent d59cdfa commit 7712f29

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ mkdir -p meta_ws/src && cd meta_ws/src
3838
git clone --recurse-submodules https://github.com/Meta-Team/Meta-ROS
3939
```
4040

41+
### Disable scara_moveit
42+
```Bash
43+
cd decomposition/scara_moveit
44+
touch COLCON_IGNORE
45+
```
4146
### Install dependencies
4247
This project is fully compatible with `rosdep`, you can easily install the dependencies with this command
4348

@@ -46,11 +51,6 @@ rosdep install -y --rosdistro humble --from-paths . --ignore-src
4651
```
4752

4853
> **Note:** You may need to manually install Eigen3 because it cannot be automatically resolved by `rosdep`.
49-
### Disable scara_moveit
50-
```Bash
51-
cd decomposition/scara_moveit
52-
touch COLCON_IGNORE
53-
```
5454
### Compile the Project
5555
Simply run
5656

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/bin/sh
2+
cd $(dirname $(realpath $0))
23
sudo cp 01-robomaster-host1ton.rules /etc/udev/rules.d/
34
sudo udevadm control --reload && sudo udevadm trigger

tools/setupcan.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
sudo ip link set can_1 type can bitrate 1000000
2+
sudo ip link set can_2 type can bitrate 1000000
3+
sudo ip link set can_3 type can bitrate 1000000
4+
sudo ip link set can_1 up
5+
sudo ip link set can_2 up
6+
sudo ip link set can_3 up

0 commit comments

Comments
 (0)