summaryrefslogtreecommitdiff
path: root/RS-232/howto_compile.txt
diff options
context:
space:
mode:
Diffstat (limited to 'RS-232/howto_compile.txt')
-rw-r--r--RS-232/howto_compile.txt28
1 files changed, 0 insertions, 28 deletions
diff --git a/RS-232/howto_compile.txt b/RS-232/howto_compile.txt
deleted file mode 100644
index de152cb..0000000
--- a/RS-232/howto_compile.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-
-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).
-
-