New copyright headers
authorJelmer Vernooij <jelmer@vernstok.nl>
Tue, 24 Feb 2004 16:35:10 +0000 (17:35 +0100)
committerJelmer Vernooij <jelmer@vernstok.nl>
Tue, 24 Feb 2004 16:35:10 +0000 (17:35 +0100)
at89ser.c
delays.c
pins.c

index 184c27a3d113363b1fc77e59c31c752f94552fa1..7000a5a721677449e544bfcaa014f61711b9cd42 100644 (file)
--- a/at89ser.c
+++ b/at89ser.c
@@ -1,9 +1,21 @@
-/* at89ser.c - Functions for programming a AT89S8252 over the 
- * serial port. 
- *
- * (C) 2003 Jelmer Vernooij <jelmer@samba.org>. Thanks to Hans Tjeerdsma 
- * for all the help with the debugging and research.
- */
+/* 
+       at89prog
+       (c) 2003-2004 Jelmer Vernooij <jelmer@samba.org>
+
+       This program is free software; you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation; either version 2 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program; if not, write to the Free Software
+       Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
 
 #include <stdio.h>
 #include <signal.h>
index b5deb37903f3d86ab612c2220ff3cbe6b515d22e..a0992bb38040c278c2e58d96e26b501aea5da983 100644 (file)
--- a/delays.c
+++ b/delays.c
@@ -1,8 +1,29 @@
+/* 
+       at89prog
+       (c) 2003-2004 Jelmer Vernooij <jelmer@samba.org>
+
+       This program is free software; you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation; either version 2 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program; if not, write to the Free Software
+       Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
 #include "delays.h"
 #include <stdio.h>
 #include <unistd.h>
 #include <sys/time.h>
 
+/** (based on some timing code in ponyprog) */
+
 void waitmicrosec(int n)
 {
        struct timeval t1, t2;
diff --git a/pins.c b/pins.c
index 822d2bf910eefe3ff6379ad7f2e62f19c027efbf..5933c443aa77db554ad72c964b3b3a89f7d57eb6 100644 (file)
--- a/pins.c
+++ b/pins.c
@@ -1,3 +1,21 @@
+/* 
+       at89prog
+       (c) 2003-2004 Jelmer Vernooij <jelmer@samba.org>
+
+       This program is free software; you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation; either version 2 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program; if not, write to the Free Software
+       Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
 #include <stdio.h>
 #include "pins.h"
 #include <signal.h>