• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Low Power RF & Wireless Connectivity » Low Power RF ZigBee® Software & IEEE 802.15.4 Forum » how to send data from end device to coordinator without binding?
Share
Low Power RF & Wireless Connectivity
  • Forums
  • Announcements
  • Files
  • E2E Wiki
Options
  • Subscribe via RSS

Forums

how to send data from end device to coordinator without binding?

This question is not answered
navneet ramachandaran
Posted by navneet ramachandaran
on Apr 13 2012 01:39 AM
Prodigy70 points

my project involves sending data from end device to coordinator which is interfaced thru serial port to computer. now how to send data from end device to coordinator without binding. can any1 plz modify serialapp for the same! thanx!!

Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • licheng Li
    Posted by licheng Li
    on Apr 13 2012 02:37 AM
    Prodigy220 points

    the shortaddress of coordinator is always 0x0000,so,you could use the simple api or af api to send datas to 0x0000.

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • navneet ramachandaran
    Posted by navneet ramachandaran
    on Apr 13 2012 08:39 AM
    Prodigy70 points

    I am a beginner, so can u plz implement it in form of some short program/code . thanx

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • YiKai Chen
    Posted by YiKai Chen
    on Apr 15 2012 21:26 PM
    Mastermind9590 points

    Hi,

    Please refer to the following codes

              DstAddr.addrMode = afAddr16Bit;
              DstAddr.addr.shortAddr = 0x0000; // Coordinator
              DstAddr.endPoint = FILL_YOUR_ENDPOINT;
              if ( AF_DataRequest( &DstAddr, &epDesc,
                                   CLUSTERID,
                                   (byte)DataLengthToSend,
                                   (byte *)pDataToSend,
                                   &TransID,
                                   AF_DISCV_ROUTE, AF_DEFAULT_RADIUS ) == afStatus_SUCCESS )
              {
                // Successfully requested to be sent.
              }
              else
              {
                // Error occurred in request to send.
              }

    Hope this helps!

    YK Chen

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • navneet ramachandaran
    Posted by navneet ramachandaran
    on Apr 16 2012 23:01 PM
    Prodigy70 points

    thanx, but what about at the receiving side? what is the code to receive data and send it on to the serial port?

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • YiKai Chen
    Posted by YiKai Chen
    on Apr 17 2012 00:49 AM
    Mastermind9590 points

    Hi,

    You can receive the message at the XXX_MessageMSGCB of receiver (such as a coordinator) as the followings:

    void XXX_MessageMSGCB( afIncomingMSGPacket_t *pkt )
    {
      switch ( pkt->clusterId )
      {
        case CLUSTERID:
          rcvd_frame=pkt->cmd.Data;
          rcvd_frame_length=pkt->cmd.DataLength;

          ...

    }

    Regards!

    YK Chen


    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
TI E2E™ Community
  • Support Forums
  • Blogs
  • Videos
  • Groups
  • Site Support & Feedback
  • Settings
TI E2E™ Community Groups
  • TI University Program
  • Make the Switch
  • Microcontroller Projects
  • Motor Drive & Control
Other Communities
  • Deyisupport
  • Designsomething.org
  • beagleboard.org
  • TI on Element 14
  • TI on TechXchangeSM
Other Technical & Support Resources
  • WEBENCH® Design Center
  • Product Information Centers
  • Technical Documents
  • TI Design Network
  • TI Technical Articles
  • TI Training

All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
embedded processors, along with software, tools and the industry’s largest sales/support staff.

© Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy Policy | Terms of Use