C program in Windows to access the contents on the bus

487 Views Asked by At

I have a zigbee usb dongle that plugs into the usb port on my Windows laptop. I need to be able to capture the incoming packets.

I am trying to write a c program that will capture the incoming packets by monitoring the bus associated with the corresponding usb port.

Are there some c libraries that facilitate this monitoring? If not how can I access the contents of the bus?

3

There are 3 best solutions below

3
On BEST ANSWER

This is what a hardware driver does for you: it monitors low-level hardware directly, and then processes and exposes that data to user-level programs in a more convenient interface.

I think Telegesis and Adaptive offer Windows drivers for download; whoever manufactured your Zigbee should provide drivers of their own, if those aren't compatible.

Or you could write your own driver, but that is a very difficult and tricky piece of work not for the faint of heart.

1
On

You can easily read and write USB packets using libusb. Normally I use libusb via the python wrappers pyUSB

However, do you actually have documentation on how to encode/decode the packet formats coming from your particular dongle? The actual zigbee packets may be wrapped up in some proprietary protocol that you would need to be able to decode.

I am also assuming your USB dongle is actually communicating via raw USB, and not using an FTDI chip to create a virtual serial port over USB. If that was the case, then you don't need to muck with USB, just use the virtual COM port for serial data.

0
On

It would be useful to open case of the dongle and take a look at the chips used (only do so if it's easy to open and you're comfortable with the idea).

You say it's Texas Instruments based: then it's probably running TI's Z-Stack firmware. If that's the case there is a good chance it's running the Z-Stack Monitor and Test API (search for document code SWRA198). You can easily write C/C++ to interact with that.

However your first hurdle is to be able to read/write to the device. If it has a FTDI chip then that's going to be easy: it should appear as a virtual comm port as mentioned in a previous post. A chip like the CC2531 is capable of connecting directly to the USB bus. I'm not familiar with that configuration. I've got one such dongle and they use some weird Texas Instruments serial-over-USB protocol. But if you get the right Windows driver it should appear as a regular comm port for applications to use.