summaryrefslogtreecommitdiff
path: root/software
diff options
context:
space:
mode:
authorChristian Pointner <equinox@mur.at>2014-12-15 21:54:55 +0100
committerChristian Pointner <equinox@mur.at>2014-12-15 21:54:55 +0100
commit9af7bc3c3af2e54506023471d48e90eed1b0dd23 (patch)
tree041812a4d2f2651a489ddca779e0ea781cabd8df /software
parentupgraded to ChibiOS 2.6.6 (diff)
upgraded avr utils
Diffstat (limited to 'software')
-rw-r--r--software/avr.README8
-rw-r--r--software/avr.defines.mk2
-rw-r--r--software/avr.include.mk2
-rw-r--r--software/avr.lib/anyio.c2
-rw-r--r--software/avr.lib/anyio.h2
-rw-r--r--software/avr.lib/ds1820.c2
-rw-r--r--software/avr.lib/ds1820.h2
-rw-r--r--software/avr.lib/led.c2
-rw-r--r--software/avr.lib/led.h2
-rw-r--r--software/avr.lib/usbio.c2
-rw-r--r--software/avr.lib/usbio.h2
-rw-r--r--software/avr.lib/util.c2
-rw-r--r--software/avr.lib/util.h2
-rw-r--r--software/avr.lufa.mk2
14 files changed, 17 insertions, 17 deletions
diff --git a/software/avr.README b/software/avr.README
index beafdcb..a5d6915 100644
--- a/software/avr.README
+++ b/software/avr.README
@@ -29,7 +29,7 @@ Arduino Boards:
SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="A6008hTA", SYMLINK+="arduino", OWNER="equinox", GROUP="equinox"
-Replace "A6008hTA" with the serial of your arduino board. You can obtain it
+Replace "A6008hTA" with the serial of your arduino board. You can obtain it
with the following command:
udevadm info --name /dev/ttyUSB0 --attribute-walk | grep ATTRs{serial}
@@ -40,8 +40,8 @@ udevadm info --name /dev/ttyUSB0 --attribute-walk | grep ATTRs{serial}
Build
=====
-Getting the source via subversion:
-----------------------------------
+Getting the source via GIT:
+---------------------------
git clone git://git.spreadspace.org/avr.git
cd avr
@@ -66,7 +66,7 @@ lib-led.c inside your project.
The anyio lib provides a failover between serial and usb-serial (using LUFA)
streams. It's not safe to use any STDIO functions inside interrupts.
-To use LUFA in your project you have to provide the path to the LUFA
+To use LUFA in your project you have to provide the path to the LUFA
source code. You may do this by calling `make` inside the contrib tree.
But any external path is ok. In order to build the lufa object file the
build system has to call `make clean` inside the LUFA_PATH so make sure
diff --git a/software/avr.defines.mk b/software/avr.defines.mk
index b993227..fb54f1b 100644
--- a/software/avr.defines.mk
+++ b/software/avr.defines.mk
@@ -2,7 +2,7 @@
## spreadspace avr utils
##
##
-## Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+## Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
##
## This file is part of spreadspace avr utils.
##
diff --git a/software/avr.include.mk b/software/avr.include.mk
index 40ea16c..648b71b 100644
--- a/software/avr.include.mk
+++ b/software/avr.include.mk
@@ -2,7 +2,7 @@
## spreadspace avr utils
##
##
-## Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+## Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
##
## This file is part of spreadspace avr utils.
##
diff --git a/software/avr.lib/anyio.c b/software/avr.lib/anyio.c
index 6322feb..2aae54e 100644
--- a/software/avr.lib/anyio.c
+++ b/software/avr.lib/anyio.c
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
* Othmar Gsenger <otti@wirdorange.org>
*
* This file is part of spreadspace avr utils.
diff --git a/software/avr.lib/anyio.h b/software/avr.lib/anyio.h
index d774a82..2cf4ae1 100644
--- a/software/avr.lib/anyio.h
+++ b/software/avr.lib/anyio.h
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
* Othmar Gsenger <otti@wirdorange.org>
*
* This file is part of spreadspace avr utils.
diff --git a/software/avr.lib/ds1820.c b/software/avr.lib/ds1820.c
index ca1ff16..4619498 100644
--- a/software/avr.lib/ds1820.c
+++ b/software/avr.lib/ds1820.c
@@ -2,7 +2,7 @@
* spreadspace avr utils - usb-1wire example
*
*
- * Copyright (C) 2013 Bernhard Tittelbach <xro@realraum.at>
+ * Copyright (C) 2013-2014 Bernhard Tittelbach <xro@realraum.at>
* based on code from:
* http://www.pjrc.com/teensy/td_libs_OneWire.html
*
diff --git a/software/avr.lib/ds1820.h b/software/avr.lib/ds1820.h
index 4c29d07..64a0089 100644
--- a/software/avr.lib/ds1820.h
+++ b/software/avr.lib/ds1820.h
@@ -2,7 +2,7 @@
* spreadspace avr utils - usb-1wire example
*
*
- * Copyright (C) 2013 Bernhard Tittelbach <xro@realraum.at>
+ * Copyright (C) 2013-2014 Bernhard Tittelbach <xro@realraum.at>
* based on code from:
* http://www.pjrc.com/teensy/td_libs_OneWire.html
*
diff --git a/software/avr.lib/led.c b/software/avr.lib/led.c
index fd2754e..4f3aec2 100644
--- a/software/avr.lib/led.c
+++ b/software/avr.lib/led.c
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
*
* This file is part of spreadspace avr utils.
*
diff --git a/software/avr.lib/led.h b/software/avr.lib/led.h
index b69015a..0c78193 100644
--- a/software/avr.lib/led.h
+++ b/software/avr.lib/led.h
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
*
* This file is part of spreadspace avr utils.
*
diff --git a/software/avr.lib/usbio.c b/software/avr.lib/usbio.c
index 6f15b53..fbdd5a3 100644
--- a/software/avr.lib/usbio.c
+++ b/software/avr.lib/usbio.c
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
* Othmar Gsenger <otti@wirdorange.org>
*
* This file is part of spreadspace avr utils.
diff --git a/software/avr.lib/usbio.h b/software/avr.lib/usbio.h
index cdc5bec..1237f37 100644
--- a/software/avr.lib/usbio.h
+++ b/software/avr.lib/usbio.h
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
* Othmar Gsenger <otti@wirdorange.org>
*
* This file is part of spreadspace avr utils.
diff --git a/software/avr.lib/util.c b/software/avr.lib/util.c
index 7442b2c..7f15bfe 100644
--- a/software/avr.lib/util.c
+++ b/software/avr.lib/util.c
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
*
* This file is part of spreadspace avr utils.
*
diff --git a/software/avr.lib/util.h b/software/avr.lib/util.h
index bdd2968..51c946d 100644
--- a/software/avr.lib/util.h
+++ b/software/avr.lib/util.h
@@ -2,7 +2,7 @@
* spreadspace avr utils
*
*
- * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
*
* This file is part of spreadspace avr utils.
*
diff --git a/software/avr.lufa.mk b/software/avr.lufa.mk
index 780ac81..1449f23 100644
--- a/software/avr.lufa.mk
+++ b/software/avr.lufa.mk
@@ -2,7 +2,7 @@
## spreadspace avr utils
##
##
-## Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+## Copyright (C) 2013-2014 Christian Pointner <equinox@spreadspace.org>
##
## This file is part of spreadspace avr utils.
##