debugObj = CxDebug(id);
CxObj *CxDebug(LONG);
This function creates a Commodities debug object. The action of this object on receiving a Commodities message is to print out information about the Commodities message through the serial port (using the kprintf() routine). The value of 'id' will also be displayed.
Note that this is a synchronous occurrence (the printing is done by the input device task). If screen or file output is desired, using a sender object instead of a debug object is necessary, since such output is best done by your application process.
This function is a C-language macro for CreateCxObj(), defined in <libraries/commodities.h>.