Add usage messages
This commit is contained in:
committed by
Michael Davidsaver
parent
7eb7988e55
commit
746d21c71d
@@ -120,7 +120,9 @@ static void ascarCallFunc(const iocshArgBuf *args)
|
||||
}
|
||||
|
||||
/* asDumpHash */
|
||||
static const iocshFuncDef asDumpHashFuncDef = {"asDumpHash",0,0};
|
||||
static const iocshFuncDef asDumpHashFuncDef = {"asDumpHash",0,0,
|
||||
"Show the contents of the hash table used "
|
||||
"to locate UAGs and HAGs.\n"};
|
||||
static void asDumpHashCallFunc(const iocshArgBuf *args)
|
||||
{
|
||||
asDumpHash();
|
||||
|
||||
@@ -20,7 +20,12 @@
|
||||
/* casr */
|
||||
static const iocshArg casrArg0 = { "level",iocshArgInt};
|
||||
static const iocshArg * const casrArgs[1] = {&casrArg0};
|
||||
static const iocshFuncDef casrFuncDef = {"casr",1,casrArgs};
|
||||
static const iocshFuncDef casrFuncDef = {"casr",1,casrArgs,
|
||||
"Channel Access Server Report with following levels:\n"
|
||||
" 0 - server’s protocol version level and summary for each attached client\n"
|
||||
" 1 - extends report with information about connected clients and beacons\n"
|
||||
" 2 - extends report with specific channel names and UDP search requests\n"
|
||||
" 3+ - expert\n"};
|
||||
static void casrCallFunc(const iocshArgBuf *args)
|
||||
{
|
||||
casr(args[0].ival);
|
||||
|
||||
Reference in New Issue
Block a user