Closed GoogleCodeExporter closed 9 years ago
I determined this was a problem with the name of my serial driver which has 2
words separated by a space. It was causing the parsing to fail. quick hack
fix =
if ((w.length == 5) && (w[4].equals("serial"))){
Log.d(TAG, "Found new driver: " + w[1]);
mDrivers.add(new Driver(w[0], w[1]));
}
if ((w.length==6) && (w[5].equals("serial"))){
Log.d(TAG, "Found new driver: " + w[1]);
mDrivers.add(new Driver(w[1], w[2]));
}
Original comment by matt.ros...@gmail.com
on 12 May 2010 at 1:48
Maybe I should split the line using tabs instead of spaces.
Original comment by cedric.p...@gmail.com
on 23 Oct 2011 at 9:36
Fixed in SVN revision 35
Original comment by cedric.p...@gmail.com
on 25 Oct 2011 at 9:48
Original issue reported on code.google.com by
matt.ros...@gmail.com
on 11 May 2010 at 11:26