Skip to content

Commit

Permalink
fixed reServer Industrial Jetpack 6 POE enable bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhuYaoHui1998 committed Sep 20, 2024
1 parent c363b1f commit 3836585
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -542,14 +542,29 @@ There are 2 LEDs (green and yellow) on each Ethernet port which indicates the fo

- Before connecting PoE cameras, you need to enable the PoE function for the 4 Ethernet ports. Enable it as follows:

```sh
sudo -i
cd /sys/class/gpio
echo 315 > export
cd gpio315
echo "out" > direction
echo 1 > value
```
<Tabs>
<TabItem value="Jetpack 5.1.x" label="Jetpack 5.1.x">

```sh
sudo -i
cd /sys/class/gpio
echo 315 > export
cd gpio315
echo "out" > direction
echo 1 > value
```

</TabItem>
<TabItem value="Jetpack 6" label="Jetpack 6">

```sh
sudo apt update
sudo apt install gpiod
gpioset gpiochip2 15=1
```

</TabItem>
</Tabs>

- If you need to configure different IP addresses for each POE interface, follow these instructions:

Expand Down
File renamed without changes.

0 comments on commit 3836585

Please sign in to comment.