Drivers Microsystems Multifunction Devices



Multifunction Device - Driver Download. Vendor:. Product: Multifunction Device. Hardware Class: Net. Search For More Drivers.: Go! Windows 10 64-Bit. A library of over 250,000 device drivers, firmware, BIOS and utilities for Windows. Right-click on the devices and select Properties to see the driver information. Under the Driver tab it will show the driver currently in use. The following box shows the system driver: To update it, click Update Driver. Choose 'Install from a list or specific location'. Choose 'Don't search. I will choose the driver to install.'


You were looking for:Drivers microsystems multifunction devices manual
Select the driver for your operating system and its bit. It is recommended to install a later version of the driver (see the release date).
To go to the download file, click on the link.

Drivers Microsystems Multifunction Devices Bluetooth

Searching results:

DriverOperating
system
Driver Date
Version
Link
Alcor USB Storage CardReaders DriversWindows 10
64-bit (x64)
2019-12-04
v.2.0.151.24533
Alcor Micro USB Smart Card ReaderWindows 10
32-bit (x86), 64-bit (x64)
2018-04-26
v.2.0.149.10100
Alcorlink USB 2.0/3.0 Card Reader DriversWindows XP, Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10
32-bit (x86), 64-bit (x64)
2017-01-20
v.1.0.147.4503

-->Devices

Drivers Microsystems Multifunction Devices Wireless

If a device's underlying bus supports a multifunction bus standard, such as PC Card, the vendor for a multifunction device on an NT-based platform can use the system-supplied multifunction bus driver (mf.sys) to support the device.

Drivers Microsystems Multifunction Devices Manual

The mf.sys bus driver handles PnP enumeration of the device functions and arbitrates resources, such as I/O ports and IRQs, between the functions. The mf.sys driver handles power management for the child functions by power managing the parent multifunction device.

To use mf.sys, a multifunction device must meet the following requirements:

  • The device's underlying bus must have a multifunction standard.

  • The DEVICE_CAPABILITIES of the child functions must be identical and must match those of the parent device. When queried for the device capabilities of a child function (IRP_MN_QUERY_CAPABILITIES), the mf.sys driver reports the device capabilities of the parent device.

  • The driver for the bus on which the multifunction device resides, such as pcmcia.sys, must handle any IRP_MN_READ_CONFIG and IRP_MN_WRITE_CONFIG requests. The mf.sys driver just passes these IRPs to the parent bus driver.

  • The functions must be independent: they cannot have start-order dependencies; the resource requirements for one function cannot be expressed in terms of the resources of another function (for example, function1 uses I/O port X and function2 uses portX + 200); and each function must be able to operate as a separate device, even if it is serviced by the same driver(s) as another function.

To use mf.sys, a vendor supplies an INF for the multifunction device that specifies mf.sys as the driver for the device. If a device completely and accurately conforms to the multifunction standard for its underlying bus, the vendor of such a device can use the system-supplied mf.inf. If a device does not completely conform to the standard, the vendor must provide a custom INF.

In either case, the vendor also supplies drivers and INF files for the individual functions on the device.

Devices

The following skeleton of a custom multifunction INF illustrates the required syntax for specifying mf.sys as the driver for a multifunction device:

Drivers Microsystems Multifunction Devices Driver

Consider a combination LAN/modem PC Card device. Without any special multifunction support, such a device might be reported by the PCMCIA bus driver as a single modem device. With the additional support of a multifunction INF and the mf.sys bus driver, both functions of the device are enumerated. The following figure shows the sample device stacks that might be created for such a combo PC Card with the required multifunction support.

As shown in the preceding figure, the driver for the bus on which the multifunction device resides enumerates one device. The hardware ID in the multifunction INF file causes the PnP manager to load the mf.sys bus driver as the function driver for the device. The mf.sys bus driver enumerates two child devices, a LAN device and a modem.

Drivers Microsystems Multifunction Devices Manual

The PnP manager treats each child device like a typical device, locating INF files, loading the appropriate drivers, calling their AddDevice routines, and so forth until a device stack is created for each device. The mf.sys bus driver arbitrates the resources for the child devices and manages any other multifunction aspects of the device. The vendor of the multifunction card provides function drivers and INFs for the multiple functions (LAN and modem), just as if they were separate devices.

Drivers Microsystems Multifunction Devices Bluetooth

The illustration focuses on the function drivers and parent bus drivers and their associated FDOs and PDOs. Any filter drivers (and filter DOs) are omitted for simplicity.