Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/groeck/devantech
Devantech USB-ISS Linux kernel driver
https://github.com/groeck/devantech
Last synced: about 1 month ago
JSON representation
Devantech USB-ISS Linux kernel driver
- Host: GitHub
- URL: https://github.com/groeck/devantech
- Owner: groeck
- License: gpl-2.0
- Created: 2011-09-07T16:55:24.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2022-01-10T18:21:11.000Z (almost 3 years ago)
- Last Synced: 2024-08-14T01:48:20.712Z (3 months ago)
- Language: C
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
This driver interfers with the USB cdc-acm driver. Therefore, you will have to
blacklist it. You can do this by adding an entry "blacklist cdc-acm" into one of
the files in /etc/modprobe.d. An alternative is to add an ignore entry for
Devantech USB-ISS into acm_ids[] in drivers/usb/class/cdc-acm.c.+ /* Exclude Devantech USB-ISS */
+ { USB_DEVICE(0x04d8, 0xffee),
+ .driver_info = IGNORE_DEVICE,
+ },
+Also, it is useful to add "i2c-devantech-iss" to /etc/modules to ensure that the
driver is loaded automatically during system startup to ensure that the device
is detected as I2C master controller.To build and install this driver, execute the following command sequence:
$ make
$ sudo make installIf you get an error message such as
make: *** /usr/src/linux-headers-2.6.32-32-server: No such file or directory.
Stop.
make: *** [modules] Error 2you will have to install the correct version of the linux header files. In
Ubuntu, and with above error message, this would besudo apt-get install linux-headers-2.6.32-32-server