diff --git a/README.md b/README.md index 4c8e59f7..6c7f521c 100644 --- a/README.md +++ b/README.md @@ -8,59 +8,37 @@ Statime is a library providing an implementation of PTP version 2.1 (IEEE1588-20 It is designed to be able to work with many different underlying platforms, including embedded targets. This does mean that it cannot use the standard library and platform specific libraries to interact with the system clock and to access the network. That needs to be provided by the user of the library. -On modern Linux kernels, the `statime-linux` crate provides ready to use implementations of these interfaces. For other platforms the user will need to implement these themselves. +On modern Linux kernels, the `statime-linux` crate provides a ready to use PTP daemon. See our [getting started guide](https://docs.statime.pendulum-project.org/guide/getting-started/). -The `statime-stm32` crate gives an example of how to use statime on an embedded target. +If you want to use Statime on platforms other than Linux, you will need to implement a suitable binary yourself. The `statime-stm32` crate gives an example of how to do this on an embedded target.
-The `statime-linux` crate provides a binary for Linux implementing an ordinary or boundary clock. It will need sufficient permissions to change the system clock to use. The easiest way to start it is through sudo: -``` -sudo ./target/debug/statime -c path/to/statime.toml -``` - ## Structure The `statime` library has been built in a way to try and be platform-agnostic. To do that, the network and clock have been abstracted. The `statime-linux` library provides implementations of these abstractions for linux-based platforms. For other platforms, this needs to be provided by the user. For more details, see [the documentation](https://docs.statime.pendulum-project.org/api/statime/) ## Rust version -Statime requires a nigthly version of cargo/rust. The easiest way to obtain these is through [rustup](https://rustup.rs) +Statime requires Rust version 1.67 at minimum. The easiest way to install Rust is through [rustup](https://rustup.rs) -## Running with elevated privileges +## Running from source -Because of the use of ports 319 and 320 in the PTP protocol, the code here needs to be run as root. It is best to build the code as a non-root user with +Because of the use of ports 319 and 320 in the PTP protocol, `statime-linux` needs to be run as root. It is best to build it as a non-root user with ``` -cargo +nightly build +cargo build ``` and then run it as root with ``` sudo ./target/debug/statime -i