busTRACE This WEB page comes from the busTRACE 8.0 User's Manual. (Table of Contents)

Previous Topic Next Topic
 

busTRACE 8.0 provides the means for a Windows application developer to remotely control the busTRACE capture process. For example, by communicating with busTRACE, you can add busTRACE capabilities to your program (requires busTRACE 8.0 to be installed along with your application).

An easy to use C++ class (also callable from a 'C' program), with full source code, is provided. For example, want to tell busTRACE to start a capture from you application? All you need is the following:

CBustraceRemoteControl ctrl;

HWND hwndBustrace = ctrl.FindBustrace();

if ( hwndBustrace )

   BOOL bStatus = ctrl.SendStartCapture(hwndBustrace, hwndYours);

The busTRACE remote API allows you to enumerate the capture devices, set capture settings, start/stop the capture process, and save the capture results to file.

If you are interested in receiving the source code for remotely controlling the busTRACE capture process, please contact us.

See Also: