<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Zigbee Addressing in 8-bit Microcontrollers</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192542#M14862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;I have found alot of useful information in the BSSRM.pdf document.&amp;nbsp; However, i still have a question or two.&amp;nbsp; If someone could answer these it would be much appreciated.&lt;BR /&gt;&lt;BR /&gt;1. My network consists of a NCB and about 20 nodes which are all routers (running off of the BeeStack codebase).&amp;nbsp; Is it possible for a node to specify its short address when it requests to join the PAN? I'd like to be able to permanently set a node's short address.&lt;BR /&gt;&lt;BR /&gt;2.&amp;nbsp; If specifying the short address isn't possible, I will use the 64-bit IEEE addresses to keep track of the nodes.&amp;nbsp; When I need to send a message from the NCB to one of the nodes, I assume I will do a APS_GetNwkAddress() to obtain the NWK address.&amp;nbsp; Is this table of addresses already built, or is that left up to me?&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Kurt&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by wareagle on &lt;SPAN class="date_text"&gt;2008-02-23&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;02:59 AM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Feb 2008 10:34:40 GMT</pubDate>
    <dc:creator>wareagle</dc:creator>
    <dc:date>2008-02-23T10:34:40Z</dc:date>
    <item>
      <title>Zigbee Addressing</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192539#M14859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have some questions that I think should be relatively easy for those with experience to answer.&amp;nbsp; I'm working with the Generic Endpoint app in the Beestack Codebase.&amp;nbsp; I can successfully transmit messages from an SRB to an NCB (by a simple modification to the demo), but now I'm trying to send messages from the NCB back to the SRB.&amp;nbsp; My problem is how to get the short address of the SRB I'd like to talk to ( and I don't understand how the demo gets the NCB's address).&amp;nbsp; I assume that once i know this, I can do something like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;DIV class="msg_source_code"&gt;&lt;DIV class="text_smallest"&gt;Code:&lt;/DIV&gt;&lt;PRE&gt;addrInfo.dstAddrMode = gZbAddrMode16Bit_c;Copy2Bytes(addrInfo.dstAddr.aNwkAddr, &amp;lt;SRB's address&amp;gt;);&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;Ideally, each SRB will have a permanent short address.&amp;nbsp; If this is possible, where do I set this?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Kurt&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 09:45:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192539#M14859</guid>
      <dc:creator>wareagle</dc:creator>
      <dc:date>2020-10-29T09:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee Addressing</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192540#M14860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;wareagle,&lt;/DIV&gt;&lt;DIV&gt;the demo application uses a binding to communicate.&lt;/DIV&gt;&lt;DIV&gt;Please go through the steps of the ZigBee application users guide to learn how binding is done.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Then continue with the step by step instructions in the Beestack Application Developer's guide.&lt;/DIV&gt;&lt;DIV&gt;This will teach you how to develop a simple custom ZigBee application.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Br,&lt;/DIV&gt;&lt;DIV&gt;Mads&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 00:33:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192540#M14860</guid>
      <dc:creator>Mads</dc:creator>
      <dc:date>2008-02-22T00:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee Addressing</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192541#M14861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Mads,&lt;BR /&gt;Thank you for your reply.&amp;nbsp; I did not find many details on binding in the Application User Guide (zaug.pdf).&amp;nbsp; However, if I read correctly, it seems that binding only works between two nodes.&amp;nbsp; In my network I will have about 20 nodes communicating with the NCB.&amp;nbsp; I know that the NCB keeps a table of all nodes in a PAN. Would this be the recommended way to get a particular node's address?&amp;nbsp; Obviously I'm a complete beginner with Zigbee, so if there are other documents I should read please let me know.&amp;nbsp; So far I cannot find the answer to these questions in the PDFs included with BeeKit.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Kurt&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 14:28:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192541#M14861</guid>
      <dc:creator>wareagle</dc:creator>
      <dc:date>2008-02-22T14:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee Addressing</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192542#M14862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;I have found alot of useful information in the BSSRM.pdf document.&amp;nbsp; However, i still have a question or two.&amp;nbsp; If someone could answer these it would be much appreciated.&lt;BR /&gt;&lt;BR /&gt;1. My network consists of a NCB and about 20 nodes which are all routers (running off of the BeeStack codebase).&amp;nbsp; Is it possible for a node to specify its short address when it requests to join the PAN? I'd like to be able to permanently set a node's short address.&lt;BR /&gt;&lt;BR /&gt;2.&amp;nbsp; If specifying the short address isn't possible, I will use the 64-bit IEEE addresses to keep track of the nodes.&amp;nbsp; When I need to send a message from the NCB to one of the nodes, I assume I will do a APS_GetNwkAddress() to obtain the NWK address.&amp;nbsp; Is this table of addresses already built, or is that left up to me?&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;Kurt&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by wareagle on &lt;SPAN class="date_text"&gt;2008-02-23&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;02:59 AM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 10:34:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192542#M14862</guid>
      <dc:creator>wareagle</dc:creator>
      <dc:date>2008-02-23T10:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee Addressing</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192543#M14863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;I've run into the same dilema as wareagle. How ought a program manage the addresses of 20+ routers?&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 04:39:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192543#M14863</guid>
      <dc:creator>JanellA</dc:creator>
      <dc:date>2008-03-07T04:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee Addressing</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192544#M14864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;I found that each node only adds the address of its parent and childs when joining to its parent&amp;nbsp; or when a child joins to it. This is done aoutomaticlly and we don't need to add anything.&lt;BR /&gt;But I need to sepecify network short addresses of all nodes myself so that they can never change. Could you find the solution?&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 12:12:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Zigbee-Addressing/m-p/192544#M14864</guid>
      <dc:creator>bitasobhani</dc:creator>
      <dc:date>2008-07-29T12:12:27Z</dc:date>
    </item>
  </channel>
</rss>

