_linkProtocol.sendPackage(DataTypeName.ACKNOWLEDGE, cmd.getData(), false);
return true;
}
else if (_linkProtocol.getType(message).equals(DataTypeName.XFER_CMPLT)) {
CommandId cmd = message.getData().getCommandId();
final CommandName type = _deviceCommandProtocol.getType(cmd.getId());
if (!type.equals(_command))
System.err.println("incompatible type " + type + " != " + _command);
_complete = true;
_result =
_builder.buildResult(parseSequence(_linkProtocol, (List<GarminMessage>) _result));
cmd = new CommandId(message.getId());