|
@@ -16,11 +16,11 @@ public class TestTotalS extends TotalSummonType {
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public byte[][] handleAndAnswer(Apdu apdu) throws Exception {
|
|
public byte[][] handleAndAnswer(Apdu apdu) throws Exception {
|
|
- Map<Integer,Boolean> booleans=new HashMap<>();
|
|
|
|
|
|
+ Map<Integer,Number> booleans=new HashMap<>();
|
|
for(int i =0 ;i<100;i++){
|
|
for(int i =0 ;i<100;i++){
|
|
- booleans.put(i,true);
|
|
|
|
|
|
+ booleans.put(16385+i,0.2);
|
|
}
|
|
}
|
|
- SendDataFrameHelper.sendYxDataFrame(apdu.getChannel(),booleans,1,20,null);
|
|
|
|
|
|
+ SendDataFrameHelper.sendYcDataFrame(apdu.getChannel(),booleans,1,20,null);
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|