]> sigrok.org Git - libserialport.git/commitdiff
Release examples as public domain.
authorMartin Ling <redacted>
Sun, 5 Jan 2020 14:53:09 +0000 (14:53 +0000)
committerUwe Hermann <redacted>
Sun, 5 Jan 2020 17:19:32 +0000 (18:19 +0100)
examples/Makefile
examples/README
examples/list_ports.c
examples/port_info.c

index c9ac40f249e5fb7a0fff2dde1b77d194fe652b9d..e533e626f1f036a661b0109c122aaa0984e00061 100644 (file)
@@ -1,3 +1,7 @@
+# A simple Makefile to build the examples in this directory.
+#
+# This example file is released to the public domain.
+
 CC = gcc
 PKG_CONFIG = pkg-config
 CFLAGS = -g -Wall $(shell $(PKG_CONFIG) --cflags libserialport)
index 1b8d2fef9d2915721c63154d25c0701933ee80a6..3933abc3a77ed225b8eb2456ff650885b145cf96 100644 (file)
@@ -22,3 +22,5 @@ paths in your environment to suit your system.
 You can also build these examples using any other compiler, IDE or build
 system. You just need the libserialport.h header available to compile them,
 and the libserialport library available to link and run them.
+
+These example files are hereby released into the public domain by the author.
index b8ff863b0f81cd0075a9eb98ec98dedade219bb9..ab72aece171e7b806c9be2a1670ec2379ab3899d 100644 (file)
@@ -1,7 +1,9 @@
 #include <libserialport.h>
 #include <stdio.h>
 
-/* Example of how to get a list of serial ports on the system. */
+/* Example of how to get a list of serial ports on the system.
+ *
+ * This example file is released to the public domain. */
 
 int main(int argc, char **argv)
 {
index 2c3fda64648182268d41a34813ab13b4179a4305..0bc1ee34b6282a5f453d638484bd627a8128ad3c 100644 (file)
@@ -1,7 +1,9 @@
 #include <libserialport.h>
 #include <stdio.h>
 
-/* Example of how to get information about a serial port. */
+/* Example of how to get information about a serial port.
+ *
+ * This example file is released to the public domain. */
 
 int main(int argc, char **argv)
 {