Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More simple way to make your system aware of your serial device if it... #5

Merged
merged 1 commit into from
Jun 4, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,14 @@ From ubuntu linux 11.04 and forward, you may not see your device.
The RXTX library searches for serial ports with the `/dev/ttySxx` naming convention.
Your device may be called `/dev/ttyACM0` and so is not found.

Just create a symbolic link with a good name, so for example:
From the repl point of view, you could make your system aware of it:

sudo ln -s /dev/ttyACM0 /dev/ttyS10
(System/setProperty "gnu.io.rxtx.SerialPorts" "/dev/ttyACM0")

From the OS point of view:
You could create a symbolic link with a name that satisfies this, so for example:

sudo ln -s /dev/ttyACM0 /dev/ttyS42

src: http://rxtx.qbang.org/wiki/index.php/Discovering_comm_ports

Expand Down