Difference between revisions of "IoTGateway/BSP/Linux/Linux BSP User Guide Ubuntu18.04 for rk"
From ESS-WIKI
| Line 8: | Line 8: | ||
*DS100 DIV0012 2019-09-24 | *DS100 DIV0012 2019-09-24 | ||
| + | |||
| + | [https://www.dropbox.com/s/wyp2y2ihllkuzwf/DIV0012_DS100_2019-09-24.zip?dl=0 Ubuntu18.04_DS100_V0012_Image] [https://www.dropbox.com/s/w5lhktwvwm77dv6/DIV0012_DS100_2019-09-24_zip.md5.txt?dl=0 Ubuntu18.04_DS100_V0012_Image_Checksum] | ||
== <span style="color:#0070c0">How to do about update Ubuntu in DS100?</span> == | == <span style="color:#0070c0">How to do about update Ubuntu in DS100?</span> == | ||
| Line 16: | Line 18: | ||
== <span style="color:#0070c0">Account and Password for Login</span> == | == <span style="color:#0070c0">Account and Password for Login</span> == | ||
| + | |||
| + | Account : firefly Password: firefly | ||
| + | |||
| + | == <span style="color:#0070c0">OTG port change Host mode</span> == | ||
| + | |||
| + | Command | ||
| + | <syntaxhighlight lang="bash"># cd / | ||
| + | # echo host >/sys/kernel/debug/usb0/rk_usb_force_mode | ||
| + | </syntaxhighlight> | ||
| + | == <span style="color:#0070c0">RS-485 Test</span> == | ||
| + | |||
| + | [[File:Rs485.png|800px|Rs485.png]] | ||
| + | |||
| + | RK3399 Send Command | ||
| + | <syntaxhighlight lang="bash">$ sudo su | ||
| + | $ adv | ||
| + | # stty -F /dev/ttyUSB2 speed 115200 -hupcl -icrnl -ixon -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echok | ||
| + | or | ||
| + | # stty -F /dev/ttyUSB3 speed 115200 -hupcl -icrnl -ixon -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echok | ||
| + | </syntaxhighlight>Please check return 115200 RK3399 Send "123456ABC" to ttyUSB2 or ttyUSB3<syntaxhighlight lang="bash"># echo "123456abc" >/dev/ttyUSB2 | ||
| + | or | ||
| + | # echo "123456abc" >/dev/ttyUSB3 | ||
| + | </syntaxhighlight> RK3399 Receive Command | ||
| + | |||
| + | <syntaxhighlight lang="bash"># cat /dev/ttyUSB2 & | ||
| + | or | ||
| + | # cat /dev/ttyUSB3 & | ||
| + | </syntaxhighlight> | ||
Revision as of 03:54, 25 September 2019
Contents
Linux BSP Version
Ubuntu18.04_aarch64
Ubuntu 18.04 Release Version and Image Download Path
- DS100 DIV0012 2019-09-24
Ubuntu18.04_DS100_V0012_Image Ubuntu18.04_DS100_V0012_Image_Checksum
How to do about update Ubuntu in DS100?
Account and Password for Login
Account : firefly Password: firefly
OTG port change Host mode
Command
# cd /
# echo host >/sys/kernel/debug/usb0/rk_usb_force_mode
RS-485 Test
RK3399 Send Command
$ sudo su
$ adv
# stty -F /dev/ttyUSB2 speed 115200 -hupcl -icrnl -ixon -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echok
or
# stty -F /dev/ttyUSB3 speed 115200 -hupcl -icrnl -ixon -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echok
# echo "123456abc" >/dev/ttyUSB2
or
# echo "123456abc" >/dev/ttyUSB3
# cat /dev/ttyUSB2 &
or
# cat /dev/ttyUSB3 &