aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Starkjohann <cs+github@obdev.at>2009-04-15 15:01:18 +0000
committerChristian Starkjohann <cs+github@obdev.at>2009-04-15 15:01:18 +0000
commit9ac88ab4d42885d3d3f209a0fc78d29b3cee14c4 (patch)
treee01240c7d07570ea74292c3ac403a8897d72975b
parentdeb7a7e6dbf744cbac9bd949177693e2db218a6b (diff)
downloadv-usb-9ac88ab4d42885d3d3f209a0fc78d29b3cee14c4.tar.gz
v-usb-9ac88ab4d42885d3d3f209a0fc78d29b3cee14c4.tar.bz2
v-usb-9ac88ab4d42885d3d3f209a0fc78d29b3cee14c4.zip
- renamed AVR MacPack to CrossPack
-rw-r--r--Readme.txt2
-rwxr-xr-xexamples/hid-mouse/make-files.sh6
-rw-r--r--usbdrv/Changelog.txt1
3 files changed, 5 insertions, 4 deletions
diff --git a/Readme.txt b/Readme.txt
index 12e51e0..1ba2a43 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -37,7 +37,7 @@ the IAR compiler. Previous versions have been tested with IAR 4.10B/W32 and
Ready made avr-gcc tool chains are available for most operating systems:
* Windows: WinAVR http://winavr.sourceforge.net/
- * Mac: AVRMacPack http://www.obdev.at/avrmacpack/
+ * Mac: CrossPack for AVR Development http://www.obdev.at/crosspack/
* Linux and other Unixes: Most free Unixes have optional packages for AVR
development. If not, follow the instructions at
http://www.nongnu.org/avr-libc/user-manual/install_tools.html
diff --git a/examples/hid-mouse/make-files.sh b/examples/hid-mouse/make-files.sh
index 1b229f4..449f55e 100755
--- a/examples/hid-mouse/make-files.sh
+++ b/examples/hid-mouse/make-files.sh
@@ -20,9 +20,9 @@ cat << \EOF | sed -n -f /dev/stdin ../../usbdrv/usbconfig-prototype.h >firmware/
s/^#define USB_CFG_DMINUS_BIT .*$/#define USB_CFG_DMINUS_BIT 4/g
s|^.*#define USB_CFG_CLOCK_KHZ.*$|#define USB_CFG_CLOCK_KHZ (F_CPU/1000)|g
s/^#define USB_CFG_HAVE_INTRIN_ENDPOINT .*$/#define USB_CFG_HAVE_INTRIN_ENDPOINT 1/g
-s|^#define USB_CFG_DEVICE_ID .*$|#define USB_CFG_DEVICE_ID 0xdf, 0x05 /* obdev's shared PID for HIDs */|g
-s/^#define USB_CFG_DEVICE_NAME .*$/#define USB_CFG_DEVICE_NAME 'D', 'a', 't', 'a', 'S', 't', 'o', 'r', 'e'/g
-s/^#define USB_CFG_DEVICE_NAME_LEN .*$/#define USB_CFG_DEVICE_NAME_LEN 9/g
+s|^#define USB_CFG_DEVICE_ID .*$|#define USB_CFG_DEVICE_ID 0xe8, 0x03 /* VOTI's lab use PID */|g
+s/^#define USB_CFG_DEVICE_NAME .*$/#define USB_CFG_DEVICE_NAME 'M', 'o', 'u', 's', 'e'/g
+s/^#define USB_CFG_DEVICE_NAME_LEN .*$/#define USB_CFG_DEVICE_NAME_LEN 5/g
s/^#define USB_CFG_INTR_POLL_INTERVAL .*$/#define USB_CFG_INTR_POLL_INTERVAL 100/g
s/^#define USB_CFG_MAX_BUS_POWER .*$/#define USB_CFG_MAX_BUS_POWER 20/g
diff --git a/usbdrv/Changelog.txt b/usbdrv/Changelog.txt
index d7a2fbe..262bc14 100644
--- a/usbdrv/Changelog.txt
+++ b/usbdrv/Changelog.txt
@@ -269,6 +269,7 @@ Scroll down to the bottom to see the most recent changes.
* Release 2009-03-23
+ - Hid-mouse example used settings from hid-data example, fixed that.
- Renamed project to V-USB due to a trademark issue with Atmel(r).
- Changed CommercialLicense.txt and USBID-License.txt to make the
background of USB ID registration clearer.