Fixup merge...
authorPavel A <pavel_a@live.com>
Sat, 2 Apr 2016 23:07:10 +0000 (02:07 +0300)
committerPavel A <pavel_a@live.com>
Sat, 2 Apr 2016 23:07:10 +0000 (02:07 +0300)
1  2 
.editorconfig
commandline/usbrelay-cmd.c

diff --cc .editorconfig
Simple merge
index de5d01c513e3ea0184d45e02cccfbc73640ef9e9,3d983987e0b27008a1553f98495543a31f9440db..4667f58837475ebaf2b6f12403d86205679b48d3
@@@ -1,9 -1,8 +1,8 @@@
- // Chinese USB/HID relay command line tool:
 -// Command line tool for Chinese USB/HID relays
++// Command line tool for low-cost USB/HID relays
  //
- // pa02 20-Nov-2014 supports 1,2,4 - relay devices
+ // pa02 20-Nov-2014 supports 1,2,4,8 - relay devices
  //
- // Build for Windows: using VC++ 2008 and WDK7.1
- //~~~~~~~~~~~~~~~~~~~~~~~~
+ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
  /* Prototype: V-USB example: vusb-20121206/examples/hid-data/commandline/hidtool.c 
   * Author: Christian Starkjohann
@@@ -361,9 -344,8 +343,9 @@@ int main(int argc, char **argv
      }
  
      if ( strncasecmp(arg1, "id=", 3) == 0 ) {
-         if (strlen(&arg1[3]) != 5) {
-             fprintf(stderr, "ERROR: ID must be 5 characters (%s)\n", arg1);
 +        /* Set the ID for following commands. else use 1st found device.*/
+         if (strlen(&arg1[3]) != USB_RELAY_ID_STR_LEN) {
+             printerr("ERROR: ID must be %d characters (%s)\n", USB_RELAY_ID_STR_LEN, arg1);
              return 1;
          }
          
      return err;
  }
  
--/* ------------------------------------------------------------------------- */