tool/globals.h
changeset 1126 b09fd81894cb
parent 1125 9976f7b9fe66
child 1136 a0982873d655
equal deleted inserted replaced
1125:9976f7b9fe66 1126:b09fd81894cb
    20     Normal,
    20     Normal,
    21     Verbose
    21     Verbose
    22 };
    22 };
    23 
    23 
    24 extern string commandName;
    24 extern string commandName;
       
    25 extern unsigned int masterIndex;
    25 extern int slavePosition;
    26 extern int slavePosition;
    26 extern int domainIndex;
    27 extern int domainIndex;
    27 extern vector<string> commandArgs;
    28 extern vector<string> commandArgs;
    28 extern Verbosity verbosity;
    29 extern Verbosity verbosity;
    29 extern string dataTypeStr;
    30 extern string dataTypeStr;
    85 #define cputole32(x) swap32(x)
    86 #define cputole32(x) swap32(x)
    86 
    87 
    87 #endif
    88 #endif
    88 
    89 
    89 /****************************************************************************/
    90 /****************************************************************************/
       
    91 
       
    92 enum {BreakAfterBytes = 16};
       
    93 enum {DefaultBufferSize = 1024};
       
    94 
       
    95 void printRawData(const uint8_t *, unsigned int);
       
    96 
       
    97 /****************************************************************************/