OrangePi Setup: Difference between revisions
Jump to navigation
Jump to search
(Created page with " Tested unit is the Orange Pi PC.<br> http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-PC.html Operating system used is the Armbian Focal ...") |
No edit summary |
||
Line 9: | Line 9: | ||
Install image on SD card. Insert SD card and power up the Orange Pi. | Install image on SD card. Insert SD card and power up the Orange Pi. | ||
Find | Find the ip address of the Orange Pi and connect via SSH. | ||
ssh root@<ipaddress> | ssh root@<ipaddress> | ||
Password is 1234. Follow what the interactive setup requires. | Password is 1234. Follow what the interactive setup requires. | ||
To enable the serial port run | To enable the serial port run the command below: | ||
echo "overlays=uart3" >> /boot/armbianEnv.txt | echo "overlays=uart3" >> /boot/armbianEnv.txt |
Revision as of 21:49, 17 June 2022
Tested unit is the Orange Pi PC.
http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-PC.html
Operating system used is the Armbian Focal from this page below.
https://www.armbian.com/orange-pi-pc/
Install image on SD card. Insert SD card and power up the Orange Pi.
Find the ip address of the Orange Pi and connect via SSH.
ssh root@<ipaddress>
Password is 1234. Follow what the interactive setup requires.
To enable the serial port run the command below:
echo "overlays=uart3" >> /boot/armbianEnv.txt
Then reboot the Pi with:
sudo reboot
Test the serial output with
stty -echo -F /dev/ttyS3 raw speed 38400 cat /dev/ttyS3
Important note. We have not worked on running the usual lcl tools on Orange Pi. We recommend using a Raspberrypi to setup the RPICT board. Then use the Orange Pi for runtime only.