versadac  1
versadac - Scalable Recorder Firmware
mc_debug.h
1 /*******************************************************************************
2 FILE : mc_debug.h
3 VERSION : $Id: mc_debug.h 4938 2006-10-10 14:20:18Z martinto $
4 SYSTEM : __GNUC__ on vxworks
5 DESCRIPTION : Master comms debug
6 *******************************************************************************/
7 
8 #ifndef __MC_DEBUG_H
9 #define __MC_DEBUG_H
10 #include "ENUM_MCFunctionCodes.h"
11 // force C naming to make shell usage easy
12 extern "C"
13 {
14 void mcd_init();
15 void mcd_help();
16 void mcd_verboseDevice(int devNo, bool on);
17 void mcd_verboseUnregistered(bool on);
18 void mcd_verboseLists(int devNo);
19 void mcd_verbosePort(int devNo, int port);
20 void setTelnetConsole();
21 void mcd_printSockets();
22 
23 }
24 extern ENUM_MCFunctionCodes mcd_function;
25 #endif
26