mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-21 17:18:00 +02:00
bug fix command line patnloops should print in decimal, receiver ctb: added p option to print data for debugging, fixed initializing of result in memory
This commit is contained in:
@ -44,7 +44,7 @@ slsReceiver::slsReceiver(int argc, char *argv[]):
|
||||
int c = 0;
|
||||
|
||||
while ( c != -1 ){
|
||||
c = getopt_long (argc, argv, "hvf:t:o:", long_options, &option_index);
|
||||
c = getopt_long (argc, argv, "hvf:t:o:p", long_options, &option_index);
|
||||
|
||||
// Detect the end of the options.
|
||||
if (c == -1)
|
||||
@ -53,6 +53,7 @@ slsReceiver::slsReceiver(int argc, char *argv[]):
|
||||
switch(c){
|
||||
// reserved for ctb receiver users
|
||||
case 'o':
|
||||
case 'p':
|
||||
break;
|
||||
|
||||
case 't':
|
||||
|
Reference in New Issue
Block a user