development release: Using usb4java 1.2.0 to check if it works @ macOS 'High Sierra'
This commit is contained in:
parent
d1b3067575
commit
bda316abbb
3 changed files with 21 additions and 30 deletions
16
pom.xml
16
pom.xml
|
@ -8,7 +8,7 @@
|
|||
<name>NS-USBloader</name>
|
||||
|
||||
<artifactId>ns-usbloader</artifactId>
|
||||
<version>0.2.3_DEVELOPMENT-SNAPSHOT</version>
|
||||
<version>0.2.3_DEV-SNAPSHOT</version>
|
||||
|
||||
<url>https://github.com/developersu/ns-usbloader/</url>
|
||||
<description>
|
||||
|
@ -140,7 +140,7 @@
|
|||
<dependency>
|
||||
<groupId>org.usb4java</groupId>
|
||||
<artifactId>usb4java</artifactId>
|
||||
<version>1.3.0</version>
|
||||
<version>1.2.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -155,6 +155,18 @@
|
|||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- Don't generate default JAR without dependencies -->
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-jar</id>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- Generate JAR with dependencies -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
|
|
|
@ -12,7 +12,7 @@ import java.util.Locale;
|
|||
import java.util.ResourceBundle;
|
||||
|
||||
public class NSLMain extends Application {
|
||||
public static final String appVersion = "v0.2.3_DEVELOPMENT";
|
||||
public static final String appVersion = "v0.2.3_DEV";
|
||||
@Override
|
||||
public void start(Stage primaryStage) throws Exception{
|
||||
|
||||
|
|
|
@ -114,19 +114,17 @@ public class UsbCommunications extends Task<Void> {
|
|||
|
||||
switch (result){
|
||||
case 0:
|
||||
System.out.println("SUCCES");
|
||||
System.out.println("\n"+configDescriptor.dump());
|
||||
printLog("DBG: getActiveConfigDescriptor\n"+configDescriptor.dump(), EMsgType.PASS);
|
||||
break;
|
||||
case LibUsb.ERROR_NOT_FOUND:
|
||||
System.out.println("ERROR_NOT_FOUND "+result);
|
||||
printLog("DBG: getActiveConfigDescriptor: ERROR_NOT_FOUND", EMsgType.FAIL);
|
||||
break;
|
||||
default:
|
||||
System.out.println("UNKNOWN "+result);
|
||||
printLog("DBG: getActiveConfigDescriptor: "+result, EMsgType.FAIL);
|
||||
break;
|
||||
}
|
||||
System.out.println();
|
||||
|
||||
//LibUsb.freeConfigDescriptor(configDescriptor);
|
||||
LibUsb.freeConfigDescriptor(configDescriptor);
|
||||
//*/
|
||||
/*
|
||||
* So what did we learn?
|
||||
|
@ -228,6 +226,7 @@ public class UsbCommunications extends Task<Void> {
|
|||
}
|
||||
else
|
||||
printLog("libusb doesn't supports function 'CAP_SUPPORTS_DETACH_KERNEL_DRIVER'. Proceeding.", EMsgType.WARNING);
|
||||
/*
|
||||
// Reset device
|
||||
result = LibUsb.resetDevice(handlerNS);
|
||||
if (result == 0)
|
||||
|
@ -237,6 +236,7 @@ public class UsbCommunications extends Task<Void> {
|
|||
close();
|
||||
return null;
|
||||
}
|
||||
*/
|
||||
// Set configuration (soft reset if needed)
|
||||
result = LibUsb.setConfiguration(handlerNS, 1); // 1 - configuration all we need
|
||||
if (result != LibUsb.SUCCESS){
|
||||
|
@ -264,27 +264,6 @@ public class UsbCommunications extends Task<Void> {
|
|||
printLog("Set active configuration to device.", EMsgType.PASS);
|
||||
}
|
||||
|
||||
////////////////////////////////////////// DEBUG INFORMATION START ///////////////////////////////////////////
|
||||
//
|
||||
ConfigDescriptor configDescriptor = new ConfigDescriptor();
|
||||
//result = LibUsb.getConfigDescriptor(deviceNS, (byte)0x01, configDescriptor);
|
||||
result = LibUsb.getActiveConfigDescriptor(deviceNS, configDescriptor);
|
||||
|
||||
switch (result){
|
||||
case 0:
|
||||
printLog("DBG: getActiveConfigDescriptor\n"+configDescriptor.dump(), EMsgType.PASS);
|
||||
break;
|
||||
case LibUsb.ERROR_NOT_FOUND:
|
||||
printLog("DBG: getActiveConfigDescriptor: ERROR_NOT_FOUND", EMsgType.FAIL);
|
||||
break;
|
||||
default:
|
||||
printLog("DBG: getActiveConfigDescriptor: "+result, EMsgType.FAIL);
|
||||
break;
|
||||
}
|
||||
|
||||
LibUsb.freeConfigDescriptor(configDescriptor);
|
||||
//*/
|
||||
////////////////////////////////////////// DEBUG INFORMATION END //////////////////////////////////////////////
|
||||
// Claim interface
|
||||
result = LibUsb.claimInterface(handlerNS, DEFAULT_INTERFACE);
|
||||
if (result != LibUsb.SUCCESS) {
|
||||
|
|
Loading…
Reference in a new issue