Skip to content

Commit

Permalink
Merge pull request Seeed-Studio#1696 from ZhuYaoHui1998/docusaurus-ve…
Browse files Browse the repository at this point in the history
…rsion

fixed reServer Industrial Jetpack 6 POE enable bug
  • Loading branch information
nfs0619 authored Sep 23, 2024
2 parents 3c5ccef + 3836585 commit 7009e02
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 7009e02

Please sign in to comment.