Hello,
In ble_advdata_short_name_find,
&& (parsed_name_len < strlen(p_target_name))
should be
&& (parsed_name_len <= strlen(p_target_name))
Right now, if the short name happens to match what is passed, it will actually fail.
Thanks!
James
Hello,
In ble_advdata_short_name_find,
&& (parsed_name_len < strlen(p_target_name))
should be
&& (parsed_name_len <= strlen(p_target_name))
Right now, if the short name happens to match what is passed, it will actually fail.
Thanks!
James
Hi James
Thank you for reporting this to us! I will pass this on.
Best regards,
Simon
Hi James
Thank you for reporting this to us! I will pass this on.
Best regards,
Simon