IMBNDeviceService interface of Mobile broadband API

550 Views Asked by At

Can we send AT commands by using Microsoft Mobile Broadband APIs in Windows 8 laptop? I know there is SetCommand() method in IMBNDeviceService interface. Can we send AT commands through it? If so, what is the syntax. thanks.

1

There are 1 best solutions below

2
user1725145 On

No, you can't. The DeviceServices interfaces are for sending MBIM interface commands, defined here. You can use the Mobile Broadband API DeviceServices interfaces to see which MBIM interfaces are exposed by your device, defined by their GUIDs. The MBIM interfaces have their own commands, hence the SetCommand() method.

If you want to send AT commands, find the device's COM port, and use that instead. Not all modern devices expose a COM port.