summaryrefslogtreecommitdiff
path: root/digital/dev2/doc/dev2.txt
diff options
context:
space:
mode:
Diffstat (limited to 'digital/dev2/doc/dev2.txt')
-rw-r--r--digital/dev2/doc/dev2.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/digital/dev2/doc/dev2.txt b/digital/dev2/doc/dev2.txt
index 2eed3b3d..9d499172 100644
--- a/digital/dev2/doc/dev2.txt
+++ b/digital/dev2/doc/dev2.txt
@@ -9,7 +9,7 @@ As there is no driver for the dev2 board in the kernel and there is not enough
USB end points in the AT90USB162 to implement a ACM class device with two
serial ports, you should load the generic serial driver:
- modprobe usbserial vendor=0x03eb product=0x204e
+ modprobe usbserial vendor=0x1d50 product=0x6052
Then look at kernel messages to locate the new serial devices (/dev/ttyUSBx).
@@ -19,9 +19,9 @@ be detected.
To let udev do this automatically for you, you can add this to the file
`/etc/udev/rules.d/70-apbteam.rules`:
- SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="204e", \
+ SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="1d50", ATTR{idProduct}=="6052", \
ATTR{manufacturer}=="APBTeam", MODE="0660", GROUP="plugdev", \
- RUN+="/sbin/modprobe usbserial vendor=0x03eb product=0x204e"
+ RUN+="/sbin/modprobe usbserial vendor=0x1d50 product=0x6052"
This will also automatically authorize the `plugdev` group to use the device
without root access.