From 89e6ced42bbd1636a04b8f0af4a4e9f340be95e1 Mon Sep 17 00:00:00 2001 From: Naresh Nayak Date: Fri, 11 Oct 2024 13:50:54 +0000 Subject: [PATCH] Added README for VSS apps. Signed-off-by: Naresh Nayak --- examples/acf-vss/README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/examples/acf-vss/README.md b/examples/acf-vss/README.md index dff5203..1fdfc2e 100644 --- a/examples/acf-vss/README.md +++ b/examples/acf-vss/README.md @@ -1,3 +1,27 @@ # ACF-VSS -A 1722 transport for VSS data. \ No newline at end of file +The two applications available in this folder are acf-vss-listener and acf-vss-talker. Together they can be used as sample applications for implementing the (de-)serialization of VSS on IEEE 1722 as described in [Protocol description](./protocol_description/acf-vss.md). + +## ACF-VSS-Talker +This application sends Vehicle.Speed as a float value. +To run this application using UDP: +``` +$ ./acf-vss-talker -u 10.0.0.2:17220 +``` + +For using Ethernet layer as a transport: +``` +$ ./acf-vss-talker +``` + +## ACF-VSS-Listener +This application receives the VSS values sent by ACF-VSS-Talker application. +To receive the VSS messages over IEEE 1722 using UDP. +``` +$ ./acf-vss-listener -u -p 17220 +``` + +For receiving VSS messages over Ethernet layer as a transport: +``` +$ ./acf-vss-listener +``` \ No newline at end of file