aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2014-03-31 18:50:06 +0200
committerJakob Odersky <jodersky@gmail.com>2014-03-31 18:50:06 +0200
commit7d4a8d3b561571e5e09e2b23a3b5298127ac2d2f (patch)
tree08c51a9b02e8de197a793588774c3713ecd2b36a
parent177d35eae19ef3f825d2e1f07bad01209786e802 (diff)
downloadakka-serial-7d4a8d3b561571e5e09e2b23a3b5298127ac2d2f.tar.gz
akka-serial-7d4a8d3b561571e5e09e2b23a3b5298127ac2d2f.tar.bz2
akka-serial-7d4a8d3b561571e5e09e2b23a3b5298127ac2d2f.zip
use relative links
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index a7a127f..319f1da 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Serial communication library for Scala, designed to be reactive, lightweight and
The main reason for yet another serial communication library for the JVM is that all other libraries tested used blocking IO and/or consumed enormous amounts of CPU while being idle. Flow's main goal is therefore to provide a lightweight library that only does work when communication is required. This reactive concept integrates well with the Akka IO layer therefore making flow an ideal library for extending it.
## Basic usage
-For a short guide on how to use flow see the file "documentation/basics.md", accessible on github [here](https://github.com/jodersky/flow/blob/master/documentation/basics.md).
+For a short guide on how to use flow see the file [documentation/basics.md](documentation/basics.md).
Flow is built and its examples run with SBT. To get started, include a dependency to flow in your project:
@@ -16,13 +16,13 @@ ATTENTION: flow uses native libraries to back serial communication, therefore be
## Examples
Examples on flow's usage are located in the flow-samples directory. The examples may be run by switching to the corresponding project in sbt: `project flow-samples-<sample_name>` and typing `run`. Be sure to connect a serial device before running an example.
-Since flow integrates into the Akka-IO framework, a good resource on its general design is the framework's documentation at http://doc.akka.io/docs/akka/2.3.0/scala/io.html
+Since flow integrates into the Akka-IO framework, a good resource on its general design is the framework's documentation at http://doc.akka.io/docs/akka/2.2.0/scala/io.html
## Native side
Since hardware is involved in serial communication, a Scala-only solution is not possible. Nevertherless, the native code is kept simple and minimalistic with the burden of dealing with threads left to Scala. The code aims to be POSIX compliant and therefore easily portable.
## Build
-See detailed documentation in documentation/build.md (on github [here](https://github.com/jodersky/flow/blob/master/documentation/building.md)) on how to build and install flow.
+See detailed documentation in [documentation/building.md](documentation/building.md) on how to build and install flow.
## License
flow is released under the terms of the 3-clause BSD license. See LICENSE for details.