Removed a handful of SVN expansion keywords. See #277

This commit is contained in:
Federico Fissore 2015-07-03 10:38:07 +02:00
parent bb3f7bfef4
commit 431f319aca
29 changed files with 3 additions and 57 deletions

View File

@ -1,8 +1,4 @@
/* /*
* $HeadURL$
* $Revision$
* $Date$
*
* ==================================================================== * ====================================================================
* *
* Licensed to the Apache Software Foundation (ASF) under one or more * Licensed to the Apache Software Foundation (ASF) under one or more

View File

@ -14,8 +14,6 @@
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation, along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
$Id$
*/ */
// adapted from https://community.oracle.com/thread/1479784 // adapted from https://community.oracle.com/thread/1479784

View File

@ -62,8 +62,6 @@
/* Tested with m168 */ /* Tested with m168 */
/**********************************************************/ /**********************************************************/
/* $Id$ */
/* some includes */ /* some includes */
#include <inttypes.h> #include <inttypes.h>

View File

@ -1,6 +1,5 @@
# Makefile for ATmegaBOOT # Makefile for ATmegaBOOT
# E.Lins, 18.7.2005 # E.Lins, 18.7.2005
# $Id$
# #
# Instructions # Instructions
# #

View File

@ -1,6 +1,5 @@
# Makefile for ATmegaBOOT # Makefile for ATmegaBOOT
# E.Lins, 18.7.2005 # E.Lins, 18.7.2005
# $Id$
# #
# Instructions # Instructions
# #

View File

@ -1,5 +1,3 @@
# $Id: avrdude.conf.in 1236 2013-09-16 19:40:15Z joerg_wunsch $ -*- text -*-
#
# AVRDUDE Configuration File # AVRDUDE Configuration File
# #
# This file contains configuration data used by AVRDUDE which describes # This file contains configuration data used by AVRDUDE which describes

View File

@ -56,8 +56,6 @@
/* Tested with m168 */ /* Tested with m168 */
/**********************************************************/ /**********************************************************/
/* $Id$ */
/* some includes */ /* some includes */
#include <inttypes.h> #include <inttypes.h>

View File

@ -1,6 +1,5 @@
# Makefile for ATmegaBOOT # Makefile for ATmegaBOOT
# E.Lins, 18.7.2005 # E.Lins, 18.7.2005
# $Id$
# Instructions # Instructions
# #

View File

@ -1,6 +1,5 @@
# Makefile for ATmegaBOOT # Makefile for ATmegaBOOT
# E.Lins, 18.7.2005 # E.Lins, 18.7.2005
# $Id$
# #
# Instructions # Instructions
# #

View File

@ -37,8 +37,6 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */ POSSIBILITY OF SUCH DAMAGE. */
/* $Id: boot.h,v 1.27.2.3 2008/09/30 13:58:48 arcanum Exp $ */
#ifndef _AVR_BOOT_H_ #ifndef _AVR_BOOT_H_
#define _AVR_BOOT_H_ 1 #define _AVR_BOOT_H_ 1

View File

@ -1,7 +1,6 @@
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------
# Makefile to compile and link stk500boot bootloader # Makefile to compile and link stk500boot bootloader
# Author: Peter Fleury # 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. # 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 # Adjust F_CPU below to the clock frequency in Mhz of your AVR target

View File

@ -2,7 +2,6 @@
Title: STK500v2 compatible bootloader Title: STK500v2 compatible bootloader
Modified for Wiring board ATMega128-16MHz Modified for Wiring board ATMega128-16MHz
Author: Peter Fleury <pfleury@gmx.ch> http://jump.to/fleury 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 Compiler: avr-gcc 3.4.5 or 4.1 / avr-libc 1.4.3
Hardware: All AVRs with bootloader support, tested with ATmega8 Hardware: All AVRs with bootloader support, tested with ATmega8
License: GNU General Public License License: GNU General Public License

View File

@ -19,8 +19,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id$
*/ */
extern "C" { 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 int w) { return w; }
unsigned int makeWord(unsigned char h, unsigned char l) { return (h << 8) | l; } unsigned int makeWord(unsigned char h, unsigned char l) { return (h << 8) | l; }

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id$
*/ */
#include "wiring_private.h" #include "wiring_private.h"

View File

@ -20,8 +20,6 @@
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
Modified 28 September 2010 by Mark Sproul Modified 28 September 2010 by Mark Sproul
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
*/ */
#include "wiring_private.h" #include "wiring_private.h"

View File

@ -20,8 +20,6 @@
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
Modified 28 September 2010 by Mark Sproul Modified 28 September 2010 by Mark Sproul
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
*/ */
#define ARDUINO_MAIN #define ARDUINO_MAIN

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 239 2007-01-12 17:58:39Z mellis $
*/ */
#ifndef WiringPrivate_h #ifndef WiringPrivate_h

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
*/ */
#include "wiring_private.h" #include "wiring_private.h"

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
*/ */
#include "wiring_private.h" #include "wiring_private.h"

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/ */
#include "../standard/pins_arduino.h" #include "../standard/pins_arduino.h"

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/ */
#ifndef Pins_Arduino_h #ifndef Pins_Arduino_h

View File

@ -19,8 +19,6 @@
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA 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 28-08-2009 for attiny84 R.Wiersma
Modified 09-10-2009 for attiny45 A.Saporetti Modified 09-10-2009 for attiny45 A.Saporetti
*/ */
@ -128,4 +126,4 @@ const uint8_t PROGMEM digital_pin_to_timer_PGM[] = {
#endif #endif
#endif #endif

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/ */
#ifndef Pins_Arduino_h #ifndef Pins_Arduino_h

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/ */
#ifndef Pins_Arduino_h #ifndef Pins_Arduino_h

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/ */
#include "../leonardo/pins_arduino.h" #include "../leonardo/pins_arduino.h"
@ -34,4 +32,4 @@
#define TXLED1 PORTD |= (1<<5) #define TXLED1 PORTD |= (1<<5)
#define RXLED0 PORTB &= ~(1<<0) #define RXLED0 PORTB &= ~(1<<0)
#define RXLED1 PORTB |= (1<<0) #define RXLED1 PORTB |= (1<<0)
#define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0), TXLED0, RXLED0 #define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0), TXLED0, RXLED0

View File

@ -19,8 +19,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: pins_arduino.h 1 2013-03-16 20:47:51Z cuartielles $
*/ */
#ifndef Pins_Arduino_h #ifndef Pins_Arduino_h

View File

@ -19,8 +19,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: pins_arduino.h 1 2013-03-16 20:47:51Z cuartielles $
*/ */
#ifndef Pins_Arduino_h #ifndef Pins_Arduino_h

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/ */
#ifndef Pins_Arduino_h #ifndef Pins_Arduino_h

View File

@ -18,8 +18,6 @@
Public License along with this library; if not, write to the Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA Boston, MA 02111-1307 USA
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
*/ */
#include "../leonardo/pins_arduino.h" #include "../leonardo/pins_arduino.h"