Skip to content

Commit 37c2984

Browse files
author
Federico Fissore
committed
Removed a handful of SVN expansion keywords. See #277
1 parent 462fff3 commit 37c2984

27 files changed

+3
-51
lines changed

bootloaders/atmega/ATmegaBOOT_168.c

-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@
6262
/* Tested with m168 */
6363
/**********************************************************/
6464

65-
/* $Id$ */
66-
6765

6866
/* some includes */
6967
#include <inttypes.h>

bootloaders/atmega/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Makefile for ATmegaBOOT
22
# E.Lins, 18.7.2005
3-
# $Id$
43
#
54
# Instructions
65
#

bootloaders/bt/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Makefile for ATmegaBOOT
22
# E.Lins, 18.7.2005
3-
# $Id$
43
#
54
# Instructions
65
#

bootloaders/gemma/avrdude.conf

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

bootloaders/lilypad/src/ATmegaBOOT.c

-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@
5656
/* Tested with m168 */
5757
/**********************************************************/
5858

59-
/* $Id$ */
60-
6159

6260
/* some includes */
6361
#include <inttypes.h>

bootloaders/lilypad/src/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Makefile for ATmegaBOOT
22
# E.Lins, 18.7.2005
3-
# $Id$
43

54
# Instructions
65
#

bootloaders/optiboot/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Makefile for ATmegaBOOT
22
# E.Lins, 18.7.2005
3-
# $Id$
43
#
54
# Instructions
65
#

bootloaders/optiboot/boot.h

-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3838
POSSIBILITY OF SUCH DAMAGE. */
3939

40-
/* $Id: boot.h,v 1.27.2.3 2008/09/30 13:58:48 arcanum Exp $ */
41-
4240
#ifndef _AVR_BOOT_H_
4341
#define _AVR_BOOT_H_ 1
4442

bootloaders/stk500v2/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# ----------------------------------------------------------------------------
22
# Makefile to compile and link stk500boot bootloader
33
# Author: Peter Fleury
4-
# File: $Id: Makefile,v 1.3 2006/03/04 19:26:17 peter Exp $
54
# based on WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al.
65
#
76
# Adjust F_CPU below to the clock frequency in Mhz of your AVR target

bootloaders/stk500v2/stk500boot.c

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Title: STK500v2 compatible bootloader
33
Modified for Wiring board ATMega128-16MHz
44
Author: Peter Fleury <pfleury@gmx.ch> http://jump.to/fleury
5-
File: $Id: stk500boot.c,v 1.11 2006/06/25 12:39:17 peter Exp $
65
Compiler: avr-gcc 3.4.5 or 4.1 / avr-libc 1.4.3
76
Hardware: All AVRs with bootloader support, tested with ATmega8
87
License: GNU General Public License

cores/arduino/WMath.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
Public License along with this library; if not, write to the
2020
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2121
Boston, MA 02111-1307 USA
22-
23-
$Id$
2422
*/
2523

2624
extern "C" {
@@ -57,4 +55,4 @@ long map(long x, long in_min, long in_max, long out_min, long out_max)
5755
}
5856

5957
unsigned int makeWord(unsigned int w) { return w; }
60-
unsigned int makeWord(unsigned char h, unsigned char l) { return (h << 8) | l; }
58+
unsigned int makeWord(unsigned char h, unsigned char l) { return (h << 8) | l; }

cores/arduino/wiring.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422

2523
#include "wiring_private.h"

cores/arduino/wiring_analog.c

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
Boston, MA 02111-1307 USA
2121
2222
Modified 28 September 2010 by Mark Sproul
23-
24-
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
2523
*/
2624

2725
#include "wiring_private.h"

cores/arduino/wiring_digital.c

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
Boston, MA 02111-1307 USA
2121
2222
Modified 28 September 2010 by Mark Sproul
23-
24-
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
2523
*/
2624

2725
#define ARDUINO_MAIN

cores/arduino/wiring_private.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 239 2007-01-12 17:58:39Z mellis $
2321
*/
2422

2523
#ifndef WiringPrivate_h

cores/arduino/wiring_pulse.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
2321
*/
2422

2523
#include "wiring_private.h"

cores/arduino/wiring_shift.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.c 248 2007-02-03 15:36:30Z mellis $
2321
*/
2422

2523
#include "wiring_private.h"

variants/eightanaloginputs/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
2321
*/
2422

2523
#include "../standard/pins_arduino.h"

variants/ethernet/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
2321
*/
2422

2523
#ifndef Pins_Arduino_h

variants/gemma/pins_arduino.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
2121
22-
$Id: pins_arduino.c 565 2009-03-25 10:50:00Z dmellis $
23-
2422
Modified 28-08-2009 for attiny84 R.Wiersma
2523
Modified 09-10-2009 for attiny45 A.Saporetti
2624
*/
@@ -128,4 +126,4 @@ const uint8_t PROGMEM digital_pin_to_timer_PGM[] = {
128126

129127
#endif
130128

131-
#endif
129+
#endif

variants/leonardo/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
2321
*/
2422

2523
#ifndef Pins_Arduino_h

variants/mega/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
2321
*/
2422

2523
#ifndef Pins_Arduino_h

variants/micro/pins_arduino.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
2321
*/
2422

2523
#include "../leonardo/pins_arduino.h"
@@ -34,4 +32,4 @@
3432
#define TXLED1 PORTD |= (1<<5)
3533
#define RXLED0 PORTB &= ~(1<<0)
3634
#define RXLED1 PORTB |= (1<<0)
37-
#define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0), TXLED0, RXLED0
35+
#define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0), TXLED0, RXLED0

variants/robot_control/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
Public License along with this library; if not, write to the
2020
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2121
Boston, MA 02111-1307 USA
22-
23-
$Id: pins_arduino.h 1 2013-03-16 20:47:51Z cuartielles $
2422
*/
2523

2624
#ifndef Pins_Arduino_h

variants/robot_motor/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
Public License along with this library; if not, write to the
2020
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2121
Boston, MA 02111-1307 USA
22-
23-
$Id: pins_arduino.h 1 2013-03-16 20:47:51Z cuartielles $
2422
*/
2523

2624
#ifndef Pins_Arduino_h

variants/standard/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
2321
*/
2422

2523
#ifndef Pins_Arduino_h

variants/yun/pins_arduino.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
Public License along with this library; if not, write to the
1919
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
2020
Boston, MA 02111-1307 USA
21-
22-
$Id: wiring.h 249 2007-02-03 16:52:51Z mellis $
2321
*/
2422

2523
#include "../leonardo/pins_arduino.h"

0 commit comments

Comments
 (0)