From 3fc37a23b731615358f8988b3b7550fe9bd3293e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20=C5=A0imko?= Date: Fri, 20 May 2022 15:38:52 +0200 Subject: [PATCH] update --- README.md | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index be2a91e..eb36025 100644 --- a/README.md +++ b/README.md @@ -20,21 +20,36 @@ Implemented and tested on: | Windows | Windows 10.0.19043 | gcc version 11.2.0 (MinGW-W64 x86_64-posix-seh) | | Raspberry Pi | Linux raspberrypi 5.10.17 | gcc version 8.3.0 (Raspbian 8.3.0-6+rpi1) | -### LINUX - - -### WINDOWS - +#### LINUX +* CLIENT - `gcc client.c -Wall -Werror -Wextra -o client` +* SERVER - `gcc server.c rs232.c -Wall -Werroe -Wextra -o client` +#### WINDOWS +* CLIENT - `gcc client.c -Wall -Wextra -lwsock32 -o client` +* SERVER - `gcc server.c rs232.c -lwsock32 -Wall -Werror -Wextra -o client` ## Launch -### Server -Program *serveru* je po kompilácii možné spustiť v 2 režimoch: -* manuálny režim (./server port) -* automatický režim (./server port config_file) +#### Server +Server can be launched with 1 or 2 input parameters. The number of parameters determines what mode will be used - manual or automatic mode. -### Client -### Demo +**port** - + +**config_file** - + +* Manual mode - server waits for input commands from client, sends them to laser sensor and returns results back to client +`./server ` + +* Automatic mode - server loads variables from configuration file *config.txt*, starts measuring and sends results to client continuously. +`./server [config_file]` + +#### Client +Client has to be lauched with 2 input parameters. + +**IP address** - + +**port** - + +#### Demo ## References [WinLibs GCC](https://winlibs.com) - +[RS-232 library](https://www.teuniz.net/RS-232/)