From 479abdfc5ffbaafa4b00f46cf589309dc0ec071b Mon Sep 17 00:00:00 2001 From: "Haoran S. Diao" <0@hairydiode.xyz> Date: Sat, 13 Apr 2019 13:03:52 -0400 Subject: added RS-232 Library, also covered by the GPL --- RS-232/howto_compile.txt | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 RS-232/howto_compile.txt (limited to 'RS-232/howto_compile.txt') diff --git a/RS-232/howto_compile.txt b/RS-232/howto_compile.txt new file mode 100644 index 0000000..de152cb --- /dev/null +++ b/RS-232/howto_compile.txt @@ -0,0 +1,28 @@ + +Compiling the demo's can be done as follows: + +gcc demo_rx.c rs232.c -Wall -Wextra -o2 -o test_rx + +gcc demo_tx.c rs232.c -Wall -Wextra -o2 -o test_tx + +or use the makefile by entering "make" + +Run the demo by typing: + +./test_rx + +or + +./test_tx + + + +To include this library into your project: + +Put the two files rs232.h and rs232.c in your project/sourcedirectory. + +Write #include "rs232.h" in your sourcefiles that needs access to the library. + +Add the file rs232.c to your project settings (in order to get it compiled and linked with your program). + + -- cgit v1.1