diff options
27 files changed, 3 insertions, 51 deletions
diff --git a/bootloaders/atmega/ATmegaBOOT_168.c b/bootloaders/atmega/ATmegaBOOT_168.c index 880cf9b..ff21903 100644 --- a/bootloaders/atmega/ATmegaBOOT_168.c +++ b/bootloaders/atmega/ATmegaBOOT_168.c @@ -62,8 +62,6 @@ /* Tested with m168 */
/**********************************************************/
-/* $Id$ */
-
/* some includes */
#include <inttypes.h>
diff --git a/bootloaders/atmega/Makefile b/bootloaders/atmega/Makefile index 0fd54db..36a3b6b 100644 --- a/bootloaders/atmega/Makefile +++ b/bootloaders/atmega/Makefile @@ -1,6 +1,5 @@ # Makefile for ATmegaBOOT # E.Lins, 18.7.2005 -# $Id$ # # Instructions # diff --git a/bootloaders/bt/Makefile b/bootloaders/bt/Makefile index 431f2e7..6fe213e 100644 --- a/bootloaders/bt/Makefile +++ b/bootloaders/bt/Makefile @@ -1,6 +1,5 @@ # Makefile for ATmegaBOOT # E.Lins, 18.7.2005 -# $Id$ # # Instructions # diff --git a/bootloaders/gemma/avrdude.conf b/bootloaders/gemma/avrdude.conf index 5e8203f..2e1aebb 100644 --- a/bootloaders/gemma/avrdude.conf +++ b/bootloaders/gemma/avrdude.conf @@ -1,5 +1,3 @@ -# $Id: avrdude.conf.in 1236 2013-09-16 19:40:15Z joerg_wunsch $ -*- text -*- -# # AVRDUDE Configuration File # # This file contains configuration data used by AVRDUDE which describes diff --git a/bootloaders/lilypad/src/ATmegaBOOT.c b/bootloaders/lilypad/src/ATmegaBOOT.c index 915bc57..415babe 100644 --- a/bootloaders/lilypad/src/ATmegaBOOT.c +++ b/bootloaders/lilypad/src/ATmegaBOOT.c @@ -56,8 +56,6 @@ /* Tested with m168 */ /**********************************************************/ -/* $Id$ */ - /* some includes */ #include <inttypes.h> diff --git a/bootloaders/lilypad/src/Makefile b/bootloaders/lilypad/src/Makefile index 516d5b2..394a88a 100644 --- a/bootloaders/lilypad/src/Makefile +++ b/bootloaders/lilypad/src/Makefile @@ -1,6 +1,5 @@ # Makefile for ATmegaBOOT # E.Lins, 18.7.2005 -# $Id$ # Instructions # diff --git a/bootloaders/optiboot/Makefile b/bootloaders/optiboot/Makefile index b9f3ed5..f8d137d 100644 --- a/bootloaders/optiboot/Makefile +++ b/bootloaders/optiboot/Makefile @@ -1,6 +1,5 @@ # Makefile for ATmegaBOOT # E.Lins, 18.7.2005 -# $Id$ # # Instructions # diff --git a/bootloaders/optiboot/boot.h b/bootloaders/optiboot/boot.h index 2639cd8..71170a5 100644 --- a/bootloaders/optiboot/boot.h +++ b/bootloaders/optiboot/boot.h @@ -37,8 +37,6 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: boot.h,v 1.27.2.3 2008/09/30 13:58:48 arcanum Exp $ */ - #ifndef _AVR_BOOT_H_ #define _AVR_BOOT_H_ 1 diff --git a/bootloaders/stk500v2/Makefile b/bootloaders/stk500v2/Makefile index 6b66a26..eeb9add 100644 --- a/bootloaders/stk500v2/Makefile +++ b/bootloaders/stk500v2/Makefile @@ -1,7 +1,6 @@ # ----------------------------------------------------------------------------
# Makefile to compile and link stk500boot bootloader
# Author: Peter Fleury
-# File: $Id: Makefile,v 1.3 2006/03/04 19:26:17 peter Exp $
# based on WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al.
#
# Adjust F_CPU below to the clock frequency in Mhz of your AVR target
diff --git a/bootloaders/stk500v2/stk500boot.c b/bootloaders/stk500v2/stk500boot.c index e7494df..0b49dff 100644 --- a/bootloaders/stk500v2/stk500boot.c +++ b/bootloaders/stk500v2/stk500boot.c @@ -2,7 +2,6 @@ Title: STK500v2 compatible bootloader Modified for Wiring board ATMega128-16MHz Author: Peter Fleury <pfleury@gmx.ch> http://jump.to/fleury -File: $Id: stk500boot.c,v 1.11 2006/06/25 12:39:17 peter Exp $ Compiler: avr-gcc 3.4.5 or 4.1 / avr-libc 1.4.3 Hardware: All AVRs with bootloader support, tested with ATmega8 License: GNU General Public License diff --git a/cores/arduino/WMath.cpp b/cores/arduino/WMath.cpp index 214ccdc..9fb072f 100644 --- a/cores/arduino/WMath.cpp +++ b/cores/arduino/WMath.cpp @@ -19,8 +19,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id$ */ extern "C" { @@ -57,4 +55,4 @@ long map(long x, long in_min, long in_max, long out_min, long out_max) } unsigned int makeWord(unsigned int w) { return w; } -unsigned int makeWord(unsigned char h, unsigned char l) { return (h << 8) | l; }
\ No newline at end of file +unsigned int makeWord(unsigned char h, unsigned char l) { return (h << 8) | l; } diff --git a/cores/arduino/wiring.c b/cores/arduino/wiring.c index 6cb22c0..f1a14ef 100644 --- a/cores/arduino/wiring.c +++ b/cores/arduino/wiring.c @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id$ */ #include "wiring_private.h" diff --git a/cores/arduino/wiring_analog.c b/cores/arduino/wiring_analog.c index 48a9ef5..1a4701a 100644 --- a/cores/arduino/wiring_analog.c +++ b/cores/arduino/wiring_analog.c @@ -20,8 +20,6 @@ Boston, MA 02111-1307 USA Modified 28 September 2010 by Mark Sproul - - $Id: wiring.c 248 2007-02-03 15:36:30Z mellis $ */ #include "wiring_private.h" diff --git a/cores/arduino/wiring_digital.c b/cores/arduino/wiring_digital.c index df94cc1..51adb2c 100644 --- a/cores/arduino/wiring_digital.c +++ b/cores/arduino/wiring_digital.c @@ -20,8 +20,6 @@ Boston, MA 02111-1307 USA Modified 28 September 2010 by Mark Sproul - - $Id: wiring.c 248 2007-02-03 15:36:30Z mellis $ */ #define ARDUINO_MAIN diff --git a/cores/arduino/wiring_private.h b/cores/arduino/wiring_private.h index 3bd2900..ed7c8f0 100644 --- a/cores/arduino/wiring_private.h +++ b/cores/arduino/wiring_private.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 239 2007-01-12 17:58:39Z mellis $ */ #ifndef WiringPrivate_h diff --git a/cores/arduino/wiring_pulse.c b/cores/arduino/wiring_pulse.c index 4c44d1c..76383e9 100644 --- a/cores/arduino/wiring_pulse.c +++ b/cores/arduino/wiring_pulse.c @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.c 248 2007-02-03 15:36:30Z mellis $ */ #include "wiring_private.h" diff --git a/cores/arduino/wiring_shift.c b/cores/arduino/wiring_shift.c index cfe7867..2b6f7a8 100644 --- a/cores/arduino/wiring_shift.c +++ b/cores/arduino/wiring_shift.c @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.c 248 2007-02-03 15:36:30Z mellis $ */ #include "wiring_private.h" diff --git a/variants/eightanaloginputs/pins_arduino.h b/variants/eightanaloginputs/pins_arduino.h index 52b37ef..4ccf8ba 100644 --- a/variants/eightanaloginputs/pins_arduino.h +++ b/variants/eightanaloginputs/pins_arduino.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ */ #include "../standard/pins_arduino.h" diff --git a/variants/ethernet/pins_arduino.h b/variants/ethernet/pins_arduino.h index cdcb0ed..f6773a0 100644 --- a/variants/ethernet/pins_arduino.h +++ b/variants/ethernet/pins_arduino.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ */ #ifndef Pins_Arduino_h diff --git a/variants/gemma/pins_arduino.h b/variants/gemma/pins_arduino.h index 290862d..1d367a7 100644 --- a/variants/gemma/pins_arduino.h +++ b/variants/gemma/pins_arduino.h @@ -19,8 +19,6 @@ Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - $Id: pins_arduino.c 565 2009-03-25 10:50:00Z dmellis $ - Modified 28-08-2009 for attiny84 R.Wiersma Modified 09-10-2009 for attiny45 A.Saporetti */ @@ -128,4 +126,4 @@ const uint8_t PROGMEM digital_pin_to_timer_PGM[] = { #endif -#endif
\ No newline at end of file +#endif diff --git a/variants/leonardo/pins_arduino.h b/variants/leonardo/pins_arduino.h index fd75373..89b8806 100644 --- a/variants/leonardo/pins_arduino.h +++ b/variants/leonardo/pins_arduino.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ */ #ifndef Pins_Arduino_h diff --git a/variants/mega/pins_arduino.h b/variants/mega/pins_arduino.h index a80991b..7d330fa 100644 --- a/variants/mega/pins_arduino.h +++ b/variants/mega/pins_arduino.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ */ #ifndef Pins_Arduino_h diff --git a/variants/micro/pins_arduino.h b/variants/micro/pins_arduino.h index ea8e42d..f83ef1f 100644 --- a/variants/micro/pins_arduino.h +++ b/variants/micro/pins_arduino.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ */ #include "../leonardo/pins_arduino.h" @@ -34,4 +32,4 @@ #define TXLED1 PORTD |= (1<<5) #define RXLED0 PORTB &= ~(1<<0) #define RXLED1 PORTB |= (1<<0) -#define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0), TXLED0, RXLED0
\ No newline at end of file +#define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0), TXLED0, RXLED0 diff --git a/variants/robot_control/pins_arduino.h b/variants/robot_control/pins_arduino.h index b868064..41aedea 100644 --- a/variants/robot_control/pins_arduino.h +++ b/variants/robot_control/pins_arduino.h @@ -19,8 +19,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: pins_arduino.h 1 2013-03-16 20:47:51Z cuartielles $ */ #ifndef Pins_Arduino_h diff --git a/variants/robot_motor/pins_arduino.h b/variants/robot_motor/pins_arduino.h index 7dc4a79..7a943d8 100644 --- a/variants/robot_motor/pins_arduino.h +++ b/variants/robot_motor/pins_arduino.h @@ -19,8 +19,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: pins_arduino.h 1 2013-03-16 20:47:51Z cuartielles $ */ #ifndef Pins_Arduino_h diff --git a/variants/standard/pins_arduino.h b/variants/standard/pins_arduino.h index 3d4a9f6..a3f349e 100644 --- a/variants/standard/pins_arduino.h +++ b/variants/standard/pins_arduino.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ */ #ifndef Pins_Arduino_h diff --git a/variants/yun/pins_arduino.h b/variants/yun/pins_arduino.h index 15f24cd..7fabb7f 100644 --- a/variants/yun/pins_arduino.h +++ b/variants/yun/pins_arduino.h @@ -18,8 +18,6 @@ Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ */ #include "../leonardo/pins_arduino.h" |