Drivers Auerswald Gmbh & Co. Kg Mobile Phones & Portable Devices



2009-03-12 23:59:44 UTC
Hello,
I'm not a developer but I hope someone can help me. I'm runinng Gentoo Linux

Download the driver you need for free NEW - Request a driver and we will find it for you. The Best Free Mouse Drivers app downloads for Windows: Synaptics Touchpad driver zip Synaptics Touchpad Driver ASUS Smart Gesture Touchpad Dr Cinema 4D Studio is the very best that Maxon has to offer for professional 3D artists. David, finally, here is our RNDIS USB Gadget Driver - see the attached patch against the gadget-2.4 BK tree as of now. It shouldn't be too difficult to port this to 2.6.


Auerswald GmbH & Co. KG (13) Maxtor (12) Pico (12) Panini (12) IVT (12) Ali (11) Matrox Electronic (11) Dataman Programmers (11) Validity Sensors (11) Sony Ericsson (11) Epson (11) Rockwell (10) Google USB (10) Mobile Stream (10) Renesas (9) Jawbone (9) Synaptics (9) Realtek Semiconduct (9). S: Manufacturer=Auerswald GmbH & Co. KG S: Product=COMpact 2206 S: SerialNumber=A292115 C:. #Ifs= 1 Cfg#= 1 Atr=40 MxPwr= 0mA I:. If#= 0 Alt= 0 #EPs= 3 Cls=00(ifc ) Sub=00 Prot=00 Driver=(none) E: Ad=81(I) Atr=03(Int.) MxPS= 5 Ivl=1ms E: Ad=82(I) Atr=03(Int.) MxPS= 64 Ivl=2ms E: Ad=03(O) Atr=03(Int.) MxPS= 64 Ivl=2ms.

using libusb-0.1.12.
I have a device that is not detected by libusb. It's a telephone switchboard
from German company Auerswald. The vendor ID is 0x09BF.
I found that 'lsusb -t' shows the device, lsusb with '-t' does not:
~ # lsusb -t
Bus# 0
`-Dev# 1 Vendor 0x1d6b Product 0x0001Drivers auerswald gmbh app
`-Dev# 4 Vendor 0x09bf Product 0x00db
Bus# 7
`-Dev# 1 Vendor 0x1d6b Product 0x0001
[..]
~ # lsusb
Bus 002 Device 051: ID 0411:0098 MelCo., Inc.Drivers Auerswald Gmbh & Co. Kg Mobile Phones & Portable Devices
Bus 002 Device 003: ID 15a9:0004
Bus 002 Device 004: ID 0bda:0111 Realtek Semiconductor Corp. Card Reader
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 003: ID 046d:c03f Logitech, Inc. UltraX Optical Mouse
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
I also noticed that there's no device file for it in /proc/bus/usb/001
The software from Auerswald is mainly written in Java but they provided the
source code for the interface to libusb.
This is the part where they are scanning the USB bus for a device from
Auerswald (ID 09BF):
[..]
#define MAXDEVICES 16
#define MAXNAMELEN 100
#define MAXDEVLEN 20
#define ID_AUERSWALD 0x09BF // USB vendor ID of Auerswald
[..]
JNIEXPORT jobjectArray JNICALL

Drivers Auerswald Gmbh Reviews

Java_de_auerswald_lib_transfer_usb_AuerUSBChannel_getDeviceList
(JNIEnv *env, jclass classObj)
{
jobjectArray temp = NULL;
jstring s = NULL;
jclass stringClass = NULL;
struct usb_bus *bus;
unsigned int u;
unsigned int count;
char devnames[MAXDEVICES][MAXDEVLEN];
char ufnames [MAXDEVICES][MAXNAMELEN];
int ret;
// Syncronized Teil 1
env->MonitorEnter(classObj);
usb_init();
usb_find_busses();
usb_find_devices();
bus = usb_get_busses();
count = 0;
for (; bus; bus = bus->next) {
struct usb_device *dev;
for (dev = bus->devices; dev; dev = dev->next) {
dbg ('Vendor ID 0x%04x found', dev->descriptor.idVendor);
if (dev->descriptor.idVendor ID_AUERSWALD) {
usb_dev_handle *dev_handle;
u = 0;
switch (dev->descriptor.idProduct) {
case 0x00C0: /* COMpact 2104 USB/DSL */
case 0x00DB: /* COMpact 4410/2206 USB */
case 0x00DC: /* COMpact 4406 DSL */
case 0x00DD: /* COMpact 2204 USB */
case 0x00DE: /* COMpact 2104.2 USB */
case 0x00F1: /* Comfort 2000 System Telephone */
case 0x00F2: /* Comfort 1200 System Telephone */
case 0x00F5: /* Comfortel 2500 System Telephone */
// add more devices HERE
dev_handle = usb_open(dev);
[..]
I added the 'dbg' call after the second 'for'. When running the application I
get the following output:

Drivers Auerswald Gmbh & Co. Kg Mobile Phones & Portable Devices Using

Vendor ID 0x0411 found
Vendor ID 0x15a9 found
Vendor ID 0x0bda found
Vendor ID 0x1d6b found
Vendor ID 0x1d6b found
Vendor ID 0x1d6b found
Vendor ID 0x1d6b found
Vendor ID 0x1d6b found
Vendor ID 0x1d6b found
Vendor ID 0x1d6b found
Vendor ID 0x046d found
Vendor ID 0x1d6b found
Again the correct vendor ID isn't found and the application stops.
Any idea why 'lsusb -t' (and usbview, which doesn't use libusb) show the
device but lsusb (without -t) and the above code do not?
--
Ciao,
Oliver
GPG Public Key available at http://wwwkeys.de.pgp.net
Key fingerprint = 3264 280C 05B1 572F 3F0B 42B8 1E7B 2D9D 063B D507
Chris Griffin: Hi, my name is Chris. Mom and dad said that I'm supposed to be
on my best behavior tonight and not mention poo. Oh god! What have I done?
Auerswald GmbH & Co.KG – Shareware –

Overview

Auerswald COMtools is a Shareware software in the category Miscellaneous developed by Auerswald GmbH & Co.KG.

It was checked for updates 63 times by the users of our client application UpdateStar during the last month.

Drivers auerswald gmbh & co. kg mobile phones & portable devices wireless

The latest version of Auerswald COMtools is 2.2.69, released on 02/18/2008. It was initially added to our database on 10/29/2007.

Auerswald COMtools runs on the following operating systems: Windows.

Jenoptik optical driver download for windows 10. Auerswald COMtools has not been rated by our users yet.

Bison usb devices driver download for windows 10. Download free drivers for Bison webcams. Found 62 drivers for 444 webcams. Shown page 1 from 2. Download Bison USB Video Device Windows Drivers. This page contains drivers for USB Video Device manufactured by Bison™. Please note we are carefully scanning all the content on our website for viruses and trojans. Camera Driver (Bison, Chicony, D-MAX) for Windows 10 (64-bit) - IdeaPad P585, N586. Ukraine United Arab Emirates United Kingdom United States of America Uruguay US.

Write a review for Auerswald COMtools!

63 users of UpdateStar had Auerswald COMtools installed last month.

Drivers Auerswald Gmbh Automotive

02/14/2021 Vectric Shell Extensions 1.2
02/14/2021 LanTalk NET 3.7.5644
02/14/2021 Kate's Video Converter (free) 5.614
02/14/2021 Kate's Video Cutter (free) 6.318
02/14/2021 Directory Report 63.0
02/10/2021 Adobe updates available
02/10/2021 Firefox 85.0.2 update fixes startup problem
02/09/2021 Microsoft Patchday February 2021
02/09/2021 Updates for Chromium-based browsers now available
02/08/2021 Find the best browser extensions to protect your privacy
  • » logiciel comtools
  • » gomplayer 日本語 2.2.69
  • » gom player 2.2.69 日本語
  • » comtools auerswald download
  • » auerswald comtools
  • » gom player 2.2.69 日本語 ダウンロード