-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README with chrony instructions
- Loading branch information
Zareen Choudhury
committed
Jan 23, 2018
1 parent
25af50b
commit d035ae7
Showing
1 changed file
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,23 @@ | ||
# Canopy Cloud Robotics Framework | ||
This is the ROS node for the client-side application. | ||
# Canopy Client | ||
This is the ROS node for the client-side application of Canopy. | ||
|
||
## Installation | ||
See the [Canopy docs](http://canopy-docs.readthedocs.io/en/latest/client-docs.html#installation). | ||
|
||
## Time Synchronization | ||
This section describes the steps for synchronizing timestamps between your Canopy clients and the Canopy server. | ||
|
||
Install chrony: | ||
``` | ||
sudo apt-get install chrony | ||
``` | ||
|
||
Modify the chrony configuration file `chrony_canopy_client.conf` to reflect your Canopy server's IP address: | ||
``` | ||
server 123.45.67.890 | ||
``` | ||
|
||
Restart chrony with this configuration file: | ||
``` | ||
sudo chronyd -f <path_to_canopy_client>/chrony_canopy_client.conf | ||
``` |