@Override
public byte[] receive() throws IOException {
ByteArrayOutputStream out = new ByteArrayOutputStream();
do {
GetDepDataResp getDepDataResp = tamaCommunicator.sendMessage(new GetDepDataReq());
out.write(getDepDataResp.getDataIn(), 0, getDepDataResp.getDataIn().length);
log.debug("Data received: " + (getDepDataResp.getDataIn().length) + " More Information: "
+ getDepDataResp.isMoreInformation());
log.debug("Received data: " + NfcUtils.convertBinToASCII(getDepDataResp.getDataIn()));