<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>ant scan can&amp;#39;t found any device</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/128304/ant-scan-can-t-found-any-device</link><description>Hi 
 I&amp;#39;m encountering a problem than the ANT device cannot be scanned. you can use project &amp;quot;ble_ant_app_hrm_v324&amp;quot;(ncs 324）, and modify &amp;quot; 
 
 light_rx_open_head&amp;quot; to connect to your ant device, you will see the error &amp;quot;0x4015&amp;quot;, and ant device cannot be scanned</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 10 Jul 2026 01:57:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/128304/ant-scan-can-t-found-any-device" /><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568987?ContentTypeID=1</link><pubDate>Fri, 10 Jul 2026 01:57:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c43aae95-7e48-48f8-8b2a-91a9825e2033</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;For now, I&amp;nbsp;still config&amp;nbsp;&lt;span&gt;CONFIG_LOG_MODE_IMMEDIATE=y. But I don&amp;#39;t do printfs in function&amp;nbsp;&lt;/span&gt;antplus_evt_handler, all business operations are performed on another thread, and I am still receiving user feedback regarding this issue, and I can&amp;#39;t&amp;nbsp;&lt;span&gt;reproduce it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;err_code = ant_cb_register(&amp;amp;antplus_evt_handler);
...

static void antplut_evt_post_event(async_param_t *param)
{
    ant_evt_t *p_ant_evt = (ant_evt_t *)param-&amp;gt;args.u.ptr;
    if (p_ant_evt == NULL)
    {
        logs_e(&amp;quot;p_ant_evt is NULL\r\n&amp;quot;);
        return;
    }
    background_scanner_process(p_ant_evt);
    ant_evt_handler(p_ant_evt, NULL);
    for (uint8_t i = 0; ant_dev_list[i].disp_evt_handler != NULL; i++)
    {
        if (p_ant_evt-&amp;gt;channel == ant_dev_list[i].channel_num)
        {
            ant_dev_list[i].disp_evt_handler(p_ant_evt);
        }
    }
    vh_free(p_ant_evt);
    p_ant_evt = NULL;
}

static void antplus_evt_handler(ant_evt_t *p_ant_evt)
{
    async_param_t param = {0};
    param.args.u.ptr = vh_malloc(0, sizeof(ant_evt_t));
    if (param.args.u.ptr == NULL)
    {
        return;
    }
    memcpy(param.args.u.ptr, p_ant_evt, sizeof(ant_evt_t));
    int ret = async_post(&amp;amp;async_ant, antplut_evt_post_event, &amp;amp;param, 0, false);
    if (ret)
    {
        vh_free(param.args.u.ptr);
        param.args.u.ptr = NULL;
    }
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;As you said, this problem is caused by other tasks taking over the time,&amp;nbsp;It sounds like even if I configure CONFIG_LOG_MODE_IMMEDIATE=n, this problem might still be triggered, because there are other tasks in my project. Is this correct?&lt;br /&gt;&lt;br /&gt;Also, I will close the printfs, and then observe the situation on the user side.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568983?ContentTypeID=1</link><pubDate>Thu, 09 Jul 2026 21:41:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:85b579a4-9fd0-4251-b5a0-c62f46496781</guid><dc:creator>sread</dc:creator><description>&lt;p&gt;Hello, we&amp;#39;ve spent some time analyzing the provided sample with the stack and were able to isolate a&amp;nbsp;condition where the stack can stall if&amp;nbsp;it&amp;nbsp;is delayed long enough by another task.&lt;/p&gt;
&lt;p&gt;This is why&amp;nbsp;&lt;span&gt;CONFIG_LOG_MODE_IMMEDIATE Kconfig&amp;nbsp;aggravates the issue, although there are scheduling context&amp;nbsp;changes between sdk-nrf 2.9.2- and 3.2.4-aligned versions that also contribute. I still&amp;nbsp;have not been able to&amp;nbsp;reproduce&amp;nbsp;this issue without CONFIG_LOG_MODE_IMMEDIATE. Please let me know if that does not match what you see.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;We are arranging to release an updated ANT version for sdk-nrf 3.2.4. The process will take a few weeks.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568887?ContentTypeID=1</link><pubDate>Wed, 08 Jul 2026 08:56:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0bd186a4-b7fc-4edb-8d66-039178ae045a</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Any update?Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568839?ContentTypeID=1</link><pubDate>Tue, 07 Jul 2026 05:39:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62da5b4c-e943-4d89-8012-32dc359d1cdf</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;any update? Can we handle this issue this week?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568621?ContentTypeID=1</link><pubDate>Tue, 30 Jun 2026 22:11:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1de350da-8f33-4670-bafe-393c0fad4812</guid><dc:creator>sread</dc:creator><description>&lt;p&gt;&lt;span&gt;Hi,&amp;nbsp;root cause investigation is still pending. Support capacity is limited this week, so our response will be delayed until next week. We&amp;rsquo;ll update as soon as possible.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568511?ContentTypeID=1</link><pubDate>Mon, 29 Jun 2026 02:42:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8be717e7-141b-4eab-ba74-d77117a25aca</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi，&lt;/p&gt;
&lt;p&gt;Any update?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568454?ContentTypeID=1</link><pubDate>Fri, 26 Jun 2026 03:09:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:327e79ad-b900-473c-a345-a9cab7aaa127</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t&amp;nbsp;&lt;span&gt;reproduce the issue when no printfs in&amp;nbsp;antplus_evt_handler for now. The issue feedback from our user. I will try to&amp;nbsp;reproduce it. The picture is the log I record in user.&lt;br /&gt;&amp;nbsp;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/screenshot_2D00_20260626_2D00_110710.png" /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568452?ContentTypeID=1</link><pubDate>Thu, 25 Jun 2026 23:47:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2bb564be-837b-43fe-952f-26ac6c860a51</guid><dc:creator>sread</dc:creator><description>&lt;p&gt;We&amp;#39;re still&amp;nbsp;attempting to reproduce the issue on our side with v3.2.4 and the modified handler. If you&amp;#39;re able to share a log from that build, even a short one showing the first occurrence, that would be helpful.&lt;br /&gt;&lt;br /&gt;As far as the v2.9.2 differences, there were no changes to event dispatch in the ANT components. We are evaluating SDK dependencies between versions&amp;nbsp;to determine if timing and context changes exposed an issue. I will update you as soon as I have more information.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568422?ContentTypeID=1</link><pubDate>Thu, 25 Jun 2026 13:03:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b556dcd-d91c-4a0d-9d05-2dd8f289350c</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;HI&lt;br /&gt;Did you find the reason why version 292 doesn&amp;#39;t have this problem?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568335?ContentTypeID=1</link><pubDate>Wed, 24 Jun 2026 02:09:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6254f56e-2c21-4b60-b84b-af67850dedad</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi，&lt;br /&gt;The project&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/ble_5F00_ant_5F00_app_5F00_hrm_5F00_v324.zip"&gt;ble_ant_app_hrm_v324.zip&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/ble_5F00_ant_5F00_app_5F00_hrm_5F00_v292.zip"&gt;ble_ant_app_hrm_v292.zip&lt;/a&gt;&amp;nbsp;that I have provide before, the code is the same, but it has&amp;nbsp;issuse running on V324, while it runs normally on V292.&amp;nbsp;It seems to be unrelated to the printfs? Can you check the differences between the ncs v324 and v292?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568325?ContentTypeID=1</link><pubDate>Tue, 23 Jun 2026 14:44:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a444dd07-66a9-4d45-9858-8c08c5b882f3</guid><dc:creator>sread</dc:creator><description>&lt;p&gt;Thanks for checking in, we&amp;#39;re working to reproduce this issue now. Is the ANT traffic still the same as the sample project? How frequent are the 0x4015 errors? If you have a log with the latest code we can take a look.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568281?ContentTypeID=1</link><pubDate>Tue, 23 Jun 2026 02:19:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4dc35c07-3f44-49d2-a01e-b6ce271a3944</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;This issue is affecting our project schedule. Please assist in resolving it and provide the expected repair time. Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/568242?ContentTypeID=1</link><pubDate>Mon, 22 Jun 2026 08:54:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:514d97f1-1f8c-4142-8688-20b4330da7d5</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;About this issue, have any update? I have no printfs in &amp;quot;antplus_evt_handler&amp;quot;, but I get some feedback that still report&amp;nbsp;&lt;span&gt;0x4015.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567645?ContentTypeID=1</link><pubDate>Wed, 10 Jun 2026 02:39:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:902d5a0d-3513-4382-a1d4-caade90f9849</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&amp;nbsp;I have moved my bussiness code in &amp;quot;antplus_evt_handler&amp;quot;&amp;nbsp;&amp;nbsp;to another thread, including the printfs, and the issue not happen for now. But we still hope to know the&amp;nbsp;&lt;span&gt;root cause, and fix it. &lt;br /&gt;Thank you.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567644?ContentTypeID=1</link><pubDate>Wed, 10 Jun 2026 01:51:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f80462b5-9c89-4cdc-aa9f-574755891810</guid><dc:creator>sread</dc:creator><description>&lt;p&gt;Hello, we&amp;#39;re looking into your issue now. I was able to reproduce it with your sample.&lt;/p&gt;
&lt;p&gt;What was the reasoning behind introducing prints into the event handler? Have you seen this issue without the prints/sleep in place? I was not able to see it in that case, the scan loop runs to completion. It also seems that the issue doesn&amp;#39;t occur using CONFIG_LOG_MODE_DEFERRED=y instead of &lt;span&gt;CONFIG_LOG_MODE_IMMEDIATE&lt;/span&gt;. Since the ANT work queue that handles events is cooperative, blocking in the handler starves event dispatch and is discouraged&amp;nbsp;by Zephyr&amp;#39;s work queue constraints.&lt;/p&gt;
&lt;p&gt;I hope one of those options&amp;nbsp;can unblock your development while we look for a root cause.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567509?ContentTypeID=1</link><pubDate>Mon, 08 Jun 2026 06:53:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c63feac5-46e4-4a5d-99c0-9f40ac36f612</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi Kenneth&lt;/p&gt;
&lt;p&gt;Briefly, the main test in this project is to repeatedly ANT scan open and close&lt;/p&gt;
&lt;p&gt;I have reworked this project to make it more rigorous. To ensure that each close operation is successful, after executing ant_channel_close(ANT_BS_CHANNEL_NUMBER); I use a semaphore and continuously monitor for the callback below. The semaphore is released only after receiving the signal that the channel has been closed.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1780901109382v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;From the test results, everything runs normally at the beginning, but after about 2-3 minutes, the following exception occurs.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1780901159317v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;It can be seen that the ANT channel can no longer be closed normally, and this log continues indefinitely. It looks like the ANT thread can no longer recover and is permanently stuck in the logic that reports the channel close failure.&lt;/p&gt;
&lt;p&gt;This example can be easily reproduced by using the following standard ANT device for testing. The test device is shown below:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/_AE5FE14FFE5647725F00_20260608142727_5F00_276_5F00_63.jpg" alt=" " /&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/_AE5FE14FFE5647725F00_20260608142728_5F00_277_5F00_63.jpg" alt=" " /&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/_AE5FE14FFE5647725F00_20260608142730_5F00_278_5F00_63.jpg" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Also, this issue seems to occur only on SDK-ANT 2.1.0; older versions do not have this issue.&lt;/p&gt;
&lt;p&gt;Below it is reproduce project：&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/Test_5F00_ant_5F00_issue.7z"&gt;devzone.nordicsemi.com/.../Test_5F00_ant_5F00_issue.7z&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;BR&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567417?ContentTypeID=1</link><pubDate>Thu, 04 Jun 2026 13:52:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7796240b-f42f-4ff3-9a62-e0a43184f62f</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Sorry, not had time to try this yet.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567370?ContentTypeID=1</link><pubDate>Thu, 04 Jun 2026 03:09:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b18c4207-3015-425d-94d8-bc9ef8a847a6</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Kenneth,&lt;br /&gt;&amp;nbsp;Any update? Does the issue can be&amp;nbsp;&lt;/span&gt;&lt;span class="Y2IQFc" lang="en"&gt;reproduced in your side?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567308?ContentTypeID=1</link><pubDate>Wed, 03 Jun 2026 01:43:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d6234ab9-8426-4cce-9d34-e358fba617d3</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Kenneth,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I have try to close many times, &amp;quot;&lt;/span&gt;ant_channel_close&amp;quot;&amp;nbsp; return 0, and still no&amp;nbsp;&lt;span&gt;EVENT_CHANNEL_CLOSED. The file &amp;rdquo;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/ble_5F00_ant_5F00_app_5F00_hrm_5F00_v324_5F00_0602.zip"&gt;ble_ant_app_hrm_v324_0602.zip&lt;/a&gt;&amp;ldquo; I have download and unzip is ok. Anyway, I have upload again. Please check.&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/ble_5F00_ant_5F00_app_5F00_hrm_5F00_v324_5F00_0603.zip"&gt;devzone.nordicsemi.com/.../ble_5F00_ant_5F00_app_5F00_hrm_5F00_v324_5F00_0603.zip&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567294?ContentTypeID=1</link><pubDate>Tue, 02 Jun 2026 16:11:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a31ff94b-78ae-4279-9cc8-b73456debbe0</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Seems like the zip file is invalid, maybe it wasn&amp;#39;t fully uploaded.&lt;/p&gt;
&lt;p&gt;Have you tried to call close channel more than one time? Does it return any error?&lt;/p&gt;
&lt;p&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567268?ContentTypeID=1</link><pubDate>Tue, 02 Jun 2026 12:34:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e2758e86-521c-4828-9b86-a6682d13d375</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;&lt;span&gt;Hi&amp;nbsp;&lt;/span&gt;&lt;span&gt;Kenneth,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;Any update?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567237?ContentTypeID=1</link><pubDate>Tue, 02 Jun 2026 02:07:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3d22541b-4e86-4696-b69d-a25aae6a6893</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Kenneth,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;I have confirmed that when I do&amp;nbsp;&lt;/span&gt;ant_channel_close, I can&amp;#39;t get&amp;nbsp;&lt;span&gt;EVENT_CHANNEL_CLOSED even if timeout 50s. I have added the test project and test log.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/NG_5F00_log.png" /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/OK_5F00_log.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/54L15_5F00_0602_5F00_0955_5F00_log.txt"&gt;devzone.nordicsemi.com/.../54L15_5F00_0602_5F00_0955_5F00_log.txt&lt;/a&gt;&lt;br /&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/ble_5F00_ant_5F00_app_5F00_hrm_5F00_v324_5F00_0602.zip"&gt;devzone.nordicsemi.com/.../ble_5F00_ant_5F00_app_5F00_hrm_5F00_v324_5F00_0602.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567218?ContentTypeID=1</link><pubDate>Mon, 01 Jun 2026 14:27:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:440f8171-7f8c-4fb4-b31d-e3d04e33fe64</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Can you wait for a long period of time for test? E.g. 40seconds? I think default search time is around 30 seconds, I just want to understand if it closes at the end.&lt;/p&gt;
&lt;p&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567206?ContentTypeID=1</link><pubDate>Mon, 01 Jun 2026 12:33:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0f4a3d92-aa75-47f2-9cc8-ab8c088b92f7</guid><dc:creator>nanty</dc:creator><description>&lt;p&gt;Hi，&lt;/p&gt;
&lt;p&gt;This issue occur then I do&amp;nbsp; ant_channel_close and can&amp;#39;t get&amp;nbsp;&lt;span&gt;EVENT_CHANNEL_CLOSED response. And&amp;nbsp;ant_channel_status_get() always is 2.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ant scan can't found any device</title><link>https://devzone.nordicsemi.com/thread/567202?ContentTypeID=1</link><pubDate>Mon, 01 Jun 2026 11:55:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:67ac623a-c2bb-4b2b-bfe0-a48661f993f0</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;If I remember correctly&amp;nbsp;ant_channel_open() return 0x4015 means&amp;nbsp;channel is in wrong state.&lt;/p&gt;
&lt;p&gt;Are you sure the channel is in closed state? E.g. wait for&amp;nbsp;EVENT_CHANNEL_CLOSED before you open it again. When the issue occurs, what does&amp;nbsp;sd_ant_channel_status_get() return?&lt;/p&gt;
&lt;p&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>