Debug Communications

When designing the debug communications for exchanging debug information between the TIDE and the target, we had two important goals:


The resulting debug communications system:


Your PC running TIDE sends debug messages as UDP datagrams to the target's port 65535. These messages include the MAC address of the target on which you are debugging your application.

The UDP port 65535 can still be used by your Tibbo BASIC/C application. The target recognizes a datagram received on this port as a debug command only if this datagram starts with an underscore (_).

UDP datagrams received on UDP port 65535 that do not start with an underscore are not interpreted as debug commands by the target. Such datagrams are sent to your application for processing.


There are two slightly different communication modes for Tibbo devices. You can select them from the transport drop-down list in the Project Settings dialog.


UDP Broadcast Transport

With this selection, debug commands are sent through the Ethernet network as UDP broadcasts. They are, therefore, received by all devices on your local network segment. Only the addressed Tibbo device will respond to the command. This is because each debug command contains a field specifying the MAC address of the target device. This method unnecessarily burdens all devices on the local network segment with having to "look at" all debug commands being transmitted. Also, some network equipment limits the amount of UDP broadcasts that can pass through it in one second. This may slow down your debug communications with the target.


WinPCap Transport

With this selection, debug commands are sent through the Ethernet network as unicast UDP datagrams — the target device is addressed directly. This method is the preferred way of communicating with Tibbo devices. The method relies on a WinPCap library that must be installed together with TIDE. You must have seen the request for this during TIDE installation. With  WinPCap transport, only the target device receives the debugging commands, and there is no issue with slow communications because of restrictive network equipment.

A warning note icon.In most cases, debugging commands sent by TIDE cannot go across gateways (routers). This means the target and TIDE must reside on the same network segment — remote debugging is not possible.

Also, debugging is not possible via the Wi-Fi ports of Tibbo devices, with the exception of the WM2000 and WS1102.


Debug Communications

UDP Broadcast Transport

WinPCap Transport