@@ -158,10 +161,15 @@ ntrip://[user]:[pwd]@[adrr]:[port]/[mountpoint]#[linkport]
The details of the different values for the configuration for a NTRIP connection are available further down in the document : [NTRIP Settings](#ntrip-settings)
### Example
In this exemple we create 2 serial stream that are inter connected
+#### Unix
```
-python DatalinkApp.py --Mode CMD --Streams serial:///dev/ttyACM0:115200:n:1:8:0#1 serial:///dev/ttyACM1:115200:n:1:8:0#0
+python pyDatalink.py --Mode CMD --Streams serial:///dev/ttyACM0:115200:n:1:8:0#1 serial:///dev/ttyACM1:115200:n:1:8:0#0
```
+#### Windows
+```
+python pyDatalink.py --Mode CMD --Streams serial://COM7:115200:n:1:8:0#1 serial://COM6:115200:n:1:8:0#0
+```
# Terminal Interface
@@ -172,13 +180,13 @@ The project propose a menu-based TUI, providing a semi-graphical way to configur
To start the Data link in TUI mode
```
-python pyDatalinkApp.py -m TUI
+python pyDatalink.py -m TUI
```
On this menu you can find the following items :
* [Configuration](#Configure)
-* [Connect / Disconnect](#Connect-Disconnect)
+* [connect / disconnect](#connect-disconnect)
* [ShowData](#Show-Data)
* [Link](#Link)
* [Preferences](#Preferences)
@@ -224,7 +232,7 @@ The Configure menu allow you to choose the type of communication you want to use
| MountPoint | *Contact your ntrip service provider* | - | Mountpoint of the ntrip server , depend on the provider |
|
-## Connect Disconnect
+## connect disconnect
In this section, you can start or stop a connection. To connect or disconnect, simply select a connection then select with type of stream oyu want to use and press `enter`. If the connection fails, a message will be displayed above the menu indicating the issue that needs to be fixed before retrying. If the connection is successful, the status next to the connection name will switch between "Connected" and "Disconnected".
diff --git a/user/doc_sources/pyDatalink.PNG b/user/doc_sources/pyDatalink.PNG
index 86f58f2..c4cd001 100644
Binary files a/user/doc_sources/pyDatalink.PNG and b/user/doc_sources/pyDatalink.PNG differ
diff --git a/user/doc_sources/pyDatalink_GUI.PNG b/user/doc_sources/pyDatalink_GUI.PNG
new file mode 100644
index 0000000..f8851a9
Binary files /dev/null and b/user/doc_sources/pyDatalink_GUI.PNG differ