Android read data from different datablocks
Status: Beta
Brought to you by:
lettoz
Hey guys,
im trying to read 4 integers from 4 different datablocks at one time.
Currently i do this in a for-loop with 4 "read orders". But it takes about 2 seconds for it.
Is there a way to do those 4 reads in one "big read"?
this is what i have:
for (int i = 0; i < DBnums.length; i++) {
String inst_no = DataIsoTCP.ReadData(Nodave.DB, DBnums[i], 4, 2, 0);
System.out.println(inst_no + " " + DBnames[i]);
}
hope someone can help me
greetz Stuck