<?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>Opening transmission to same (responding) device on ANOTHER channel</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/30991/opening-transmission-to-same-responding-device-on-another-channel</link><description>I may have a massive misunderstanding here.... 
 Using nRF52, SDK 14.2, Ant S212. 
 I use a background scan to discover devices on channel 0, with a beacon on channel 1. 
 Once I discover a device, I have to initiate an advanced burst to the discovered</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 05 Mar 2018 08:57:54 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/30991/opening-transmission-to-same-responding-device-on-another-channel" /><item><title>RE: Opening transmission to same (responding) device on ANOTHER channel</title><link>https://devzone.nordicsemi.com/thread/122758?ContentTypeID=1</link><pubDate>Mon, 05 Mar 2018 08:57:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b65b0b03-3818-4eaa-82a1-bdbabce98933</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;The master will transmit at every channel period, the slave will synchronize to this channel period. Seen from the master it may not know if anyone is actually receiving the data unless the master&amp;nbsp;try to send an acknowledge data (which will only be success if someone is listening), or that the slave send some data in reverse direction (for instance to request data). This is something you&amp;nbsp;can implement based on your way of using the ANT channel, but there is no specific need to do so in most cases. For instance if the master is a temperature sensor, it doesn&amp;#39;t need to know if anyone is&amp;nbsp;receiving the temperature data at all times, it will just broadcast it&amp;#39;s data at a given interval for anyone to receive.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Opening transmission to same (responding) device on ANOTHER channel</title><link>https://devzone.nordicsemi.com/thread/122499?ContentTypeID=1</link><pubDate>Thu, 01 Mar 2018 16:50:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4a01cfa5-2486-4751-b0a0-38c5ad5c8f54</guid><dc:creator>Steph van Schalkwyk</dc:creator><description>&lt;p&gt;I get that.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So devices always have to REQUEST from a master?&lt;/p&gt;
&lt;p&gt;So Slave channel sets all communications params AND device_id OF THE MASTER, then opens slave channel. Master device is &amp;quot;found&amp;quot;, then slave sends &amp;quot;send me your data&amp;quot; command? Is that correct?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Opening transmission to same (responding) device on ANOTHER channel</title><link>https://devzone.nordicsemi.com/thread/122496?ContentTypeID=1</link><pubDate>Thu, 01 Mar 2018 16:10:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:33d5dc35-7097-416a-ae68-5ba490352a89</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;the master must set all Channel ID parameters, while the slave can set one or more of the Channel ID parameters to wildcard (&amp;#39;0&amp;#39;) to search for a the master.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Opening transmission to same (responding) device on ANOTHER channel</title><link>https://devzone.nordicsemi.com/thread/122489?ContentTypeID=1</link><pubDate>Thu, 01 Mar 2018 15:27:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0ab14ca2-8837-46f1-8a81-fba86f3fdd6b</guid><dc:creator>Steph van Schalkwyk</dc:creator><description>&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt;I have read that document.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My question is, what should the Device # (referring too page 21) be if I wanted to set up a channel to a specific slave?&lt;/p&gt;
&lt;p&gt;Should the slave Device # contain the Master&amp;#39;s device #? And should the master ALWAYS have its own device # in it&amp;#39;s master channel setup?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Opening transmission to same (responding) device on ANOTHER channel</title><link>https://devzone.nordicsemi.com/thread/122463?ContentTypeID=1</link><pubDate>Thu, 01 Mar 2018 12:55:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:763eb2d2-0d1f-44f0-9f36-2ff88e6034b9</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;I recommend to check out the&amp;nbsp;ANT_Message_Protocol_and_Usage_Rev_5.1.pdf document.&lt;/p&gt;
&lt;p&gt;In chapter 5.3 Establishing a channel (page 21) you can find how to establish a channel that a master and a slave can use for communication. Once you have established communication between the master and slave, then the default data type used for communication is Broadcast. A Broadcast packet&amp;nbsp;will&amp;nbsp;be sent at every channel period from the master to the slave unless other data type is used.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The master or slave may at any time send data, in either direction with another data type. The data types to choose between are&lt;/p&gt;
&lt;p&gt;- Broadcast (sd_ant_broadcast_message_tx() - default)&lt;br /&gt;- Acknowledged (sd_ant_acknowledge_message_tx())&lt;br /&gt;- Burst (sd_ant_burst_handler_request())&lt;br /&gt;- Advanced Burst (sd_ant_adv_burst_config_set, and then sd_ant_burst_handler_request())&lt;/p&gt;
&lt;p&gt;See&amp;nbsp;chapter 5.4 ANT Data types (page 22) for more information about the data types.&lt;/p&gt;
&lt;p&gt;What I think is important to understand is that you don&amp;#39;t change channel to send a different data type, you can send whatever data types you like, at any time between a master and a slave using the above API calls. It will default back to Broadcast if no other data type is used.&lt;/p&gt;
&lt;p&gt;I believe there are example showing all data types in the SDK, but you may also find this useful:&lt;br /&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/8831/how-to-reach-maximum-speed-in-ant-advanced-burst-mode"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/8831/how-to-reach-maximum-speed-in-ant-advanced-burst-mode&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&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></channel></rss>