Signed-off-by: jh8801.jung <jh8801.jung@samsung.com>
Change-Id: I74cde2becefabb22c381a9f3e9504b0cbb74a2f0
Name: nfc-plugin-emul
Summary: NFC emul plugin
-Version: 0.0.24
+Version: 0.0.25
Release: 0
Group: TO_BE/FILLED_IN
License: Apache-2.0
create_record_count++;
DEBUG_MSG("Create Record Sucess. Create Record Count[%d]", create_record_count);
+ continue;
ERROR:
/* free data */
_nfc_emul_util_free_mem(filePayload.buffer);
DEBUG_MSG("Create Record Loop End");
-
+ break;
}
DEBUG_EMUL_END();
static bool net_nfc_emul_controller_llcp_get_remote_config(net_nfc_target_handle_s* handle, net_nfc_llcp_config_info_s *config, net_nfc_error_e* result)
{
+ /* In llcp specification ver 1.1, default miu size is 128 */
+ const uint16_t default_miu = 128;
+
if (result == NULL)
return false;
DEBUG_EMUL_BEGIN();
+ config->miu = default_miu;
+
DEBUG_EMUL_END();
return true;