1 |
2 |
ZTEX |
/*!
|
2 |
|
|
ucecho -- uppercase conversion example for all EZ-USB devices
|
3 |
3 |
ZTEX |
Copyright (C) 2009-2014 ZTEX GmbH.
|
4 |
2 |
ZTEX |
http://www.ztex.de
|
5 |
|
|
|
6 |
|
|
This program is free software; you can redistribute it and/or modify
|
7 |
|
|
it under the terms of the GNU General Public License version 3 as
|
8 |
|
|
published by the Free Software Foundation.
|
9 |
|
|
|
10 |
|
|
This program is distributed in the hope that it will be useful, but
|
11 |
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13 |
|
|
General Public License for more details.
|
14 |
|
|
|
15 |
|
|
You should have received a copy of the GNU General Public License
|
16 |
|
|
along with this program; if not, see http://www.gnu.org/licenses/.
|
17 |
|
|
!*/
|
18 |
|
|
|
19 |
|
|
import java.io.*;
|
20 |
|
|
import java.util.*;
|
21 |
|
|
|
22 |
|
|
import ch.ntb.usb.*;
|
23 |
|
|
|
24 |
|
|
import ztex.*;
|
25 |
|
|
|
26 |
|
|
// *****************************************************************************
|
27 |
|
|
// ******* ParameterException **************************************************
|
28 |
|
|
// *****************************************************************************
|
29 |
|
|
// Exception the prints a help message
|
30 |
|
|
class ParameterException extends Exception {
|
31 |
|
|
public final static String helpMsg = new String (
|
32 |
|
|
"Parameters:\n"+
|
33 |
|
|
" -d <number> Device Number (default: 0)\n" +
|
34 |
|
|
" -f Force uploads\n" +
|
35 |
|
|
" -p Print bus info\n" +
|
36 |
|
|
" -w Enable certain workarounds\n"+
|
37 |
|
|
" -h This help" );
|
38 |
|
|
|
39 |
|
|
public ParameterException (String msg) {
|
40 |
|
|
super( msg + "\n" + helpMsg );
|
41 |
|
|
}
|
42 |
|
|
}
|
43 |
|
|
|
44 |
|
|
// *****************************************************************************
|
45 |
|
|
// ******* Test0 ***************************************************************
|
46 |
|
|
// *****************************************************************************
|
47 |
|
|
class UCEcho extends Ztex1v1 {
|
48 |
|
|
|
49 |
|
|
// ******* UCEcho **************************************************************
|
50 |
|
|
// constructor
|
51 |
|
|
public UCEcho ( ZtexDevice1 pDev ) throws UsbException {
|
52 |
|
|
super ( pDev );
|
53 |
|
|
}
|
54 |
|
|
|
55 |
|
|
// ******* echo ****************************************************************
|
56 |
|
|
// writes a string to Endpoint 4, reads it back from Endpoint 2 and writes the output to System.out
|
57 |
|
|
public void echo ( String input ) throws UsbException {
|
58 |
|
|
byte buf[] = input.getBytes();
|
59 |
|
|
int i = LibusbJava.usb_bulk_write(handle(), 0x04, buf, buf.length, 1000);
|
60 |
|
|
if ( i<0 )
|
61 |
|
|
throw new UsbException("Error sending data: " + LibusbJava.usb_strerror());
|
62 |
|
|
System.out.println("Send "+i+" bytes: `"+input+"'" );
|
63 |
|
|
|
64 |
|
|
try {
|
65 |
|
|
Thread.sleep( 10 );
|
66 |
|
|
}
|
67 |
|
|
catch ( InterruptedException e ) {
|
68 |
|
|
}
|
69 |
|
|
|
70 |
|
|
buf = new byte[1024];
|
71 |
|
|
i = LibusbJava.usb_bulk_read(handle(), 0x82, buf, 1024, 1000);
|
72 |
|
|
if ( i<0 )
|
73 |
|
|
throw new UsbException("Error receiving data: " + LibusbJava.usb_strerror());
|
74 |
|
|
System.out.println("Read "+i+" bytes: `"+new String(buf,0,i)+"'" );
|
75 |
|
|
}
|
76 |
|
|
|
77 |
|
|
// ******* main ****************************************************************
|
78 |
|
|
public static void main (String args[]) {
|
79 |
|
|
|
80 |
|
|
int devNum = 0;
|
81 |
|
|
boolean force = false;
|
82 |
|
|
boolean workarounds = false;
|
83 |
|
|
|
84 |
|
|
try {
|
85 |
|
|
// init USB stuff
|
86 |
|
|
LibusbJava.usb_init();
|
87 |
|
|
|
88 |
|
|
// scan the USB bus
|
89 |
|
|
ZtexScanBus1 bus = new ZtexScanBus1( ZtexDevice1.ztexVendorId, ZtexDevice1.ztexProductId, true, false, 1);
|
90 |
|
|
if ( bus.numberOfDevices() <= 0) {
|
91 |
|
|
System.err.println("No devices found");
|
92 |
|
|
System.exit(0);
|
93 |
|
|
}
|
94 |
|
|
|
95 |
|
|
// scan the command line arguments
|
96 |
|
|
for (int i=0; i<args.length; i++ ) {
|
97 |
|
|
if ( args[i].equals("-d") ) {
|
98 |
|
|
i++;
|
99 |
|
|
try {
|
100 |
|
|
if (i>=args.length) throw new Exception();
|
101 |
|
|
devNum = Integer.parseInt( args[i] );
|
102 |
|
|
}
|
103 |
|
|
catch (Exception e) {
|
104 |
|
|
throw new ParameterException("Device number expected after -d");
|
105 |
|
|
}
|
106 |
|
|
}
|
107 |
|
|
else if ( args[i].equals("-f") ) {
|
108 |
|
|
force = true;
|
109 |
|
|
}
|
110 |
|
|
else if ( args[i].equals("-p") ) {
|
111 |
|
|
bus.printBus(System.out);
|
112 |
|
|
System.exit(0);
|
113 |
|
|
}
|
114 |
|
|
else if ( args[i].equals("-p") ) {
|
115 |
|
|
bus.printBus(System.out);
|
116 |
|
|
System.exit(0);
|
117 |
|
|
}
|
118 |
|
|
else if ( args[i].equals("-w") ) {
|
119 |
|
|
workarounds = true;
|
120 |
|
|
}
|
121 |
|
|
else if ( args[i].equals("-h") ) {
|
122 |
|
|
System.err.println(ParameterException.helpMsg);
|
123 |
|
|
System.exit(0);
|
124 |
|
|
}
|
125 |
|
|
else throw new ParameterException("Invalid Parameter: "+args[i]);
|
126 |
|
|
}
|
127 |
|
|
|
128 |
|
|
|
129 |
|
|
// create the main class
|
130 |
|
|
UCEcho ztex = new UCEcho ( bus.device(devNum) );
|
131 |
|
|
ztex.certainWorkarounds = workarounds;
|
132 |
|
|
|
133 |
|
|
// upload the firmware if necessary
|
134 |
|
|
if ( force || ! ztex.valid() || ! ztex.dev().productString().equals("ucecho for EZ-USB devices") ) {
|
135 |
|
|
System.out.println("Firmware upload time: " + ztex.uploadFirmware( "ucecho.ihx", force ) + " ms");
|
136 |
|
|
}
|
137 |
|
|
|
138 |
|
|
// claim interface 0
|
139 |
|
|
ztex.trySetConfiguration ( 1 );
|
140 |
|
|
ztex.claimInterface ( 0 );
|
141 |
|
|
|
142 |
|
|
// read string from stdin and write it to USB device
|
143 |
|
|
String str = "";
|
144 |
|
|
BufferedReader reader = new BufferedReader( new InputStreamReader( System.in ) );
|
145 |
|
|
while ( ! str.equals("quit") ) {
|
146 |
|
|
System.out.print("Enter a string or `quit' to exit the program: ");
|
147 |
|
|
str = reader.readLine();
|
148 |
|
|
if ( ! str.equals("") )
|
149 |
|
|
ztex.echo(str);
|
150 |
|
|
System.out.println("");
|
151 |
|
|
}
|
152 |
|
|
|
153 |
|
|
// release interface 0
|
154 |
|
|
ztex.releaseInterface(0);
|
155 |
|
|
|
156 |
|
|
}
|
157 |
|
|
catch (Exception e) {
|
158 |
|
|
System.out.println("Error: "+e.getLocalizedMessage() );
|
159 |
|
|
}
|
160 |
|
|
}
|
161 |
|
|
|
162 |
|
|
}
|