summaryrefslogtreecommitdiff
path: root/RS-232/howto_compile.txt
diff options
context:
space:
mode:
authorHaoran S. Diao <0@hairydiode.xyz>2019-04-13 17:54:16 -0400
committerHaoran S. Diao <0@hairydiode.xyz>2019-04-13 17:54:16 -0400
commit18a0c695a74081bf73c44921c7af43acf5933885 (patch)
tree111456f766874d72e56c72974cd70257df18a53e /RS-232/howto_compile.txt
parentf14a8e9006a84c44a65163f301efaa8a000bfa06 (diff)
removed redundant rs232 files
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).
-
-