• 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 » All Tags » SimpleApp
Share
Low Power RF & Wireless Connectivity
  • Forums
  • Announcements
  • Files
  • E2E Wiki

Browse by Tags

Low Power RF & Wireless Connectivity

Welcome to the Low Power RF & Wireless Connectivity Section of the TI E2E Support Community. Ask questions, share knowledge, explore ideas, and help solve problems with fellow engineers. To post a question, click on the forum tab then "New Post".

Sign In to Post
Tags
You have subscribed to this tag. To view or manage your tag subscriptions, click here.   Close
You have unsubscribed from this tag. To view or manage your tag subscriptions, click here.   Close
You are currently viewing:
SimpleApp
  • 2530
  • CC2430
  • CC2431
  • CC2520
  • CC2530
  • CC2530 ZNP
  • CC2530 Z-Stack ZigBee
  • CC2530DK
  • cc2530zdk
  • CC2530ZNP
  • CC2531
  • Coordinator
  • iar
  • IEEE 802.15.4
  • SerialApp
  • SmartRF05EB
  • z_stack cc2530
  • zigbee
  • ZigBee 2007
  • ZigBee PRO
  • ZNP
  • ZStack
  • Z-Stack
  • Z-Stack 2.3.0
  • СС2530
Related Posts
  • Forum Post: Re: some problems about Z-stack

    LPRF Rocks the World  LPRF Rocks the World
    Hi Dasheng, An excellent way of understadning Z-Stack sample application would be to monitor the packet exchange between nodes using our packet sniffer. The toggle is due to the SAPI_ReceiveDataIndication which is called everytime you receive a message, AF_INCOMING_MSG_CMD in the ProcessEvent loop of...
    on Aug 15, 2008
  • Forum Post: Re: some problems about Z-stack

    Dasheng Dasheng
    Hi LPRF_Rocks, i think you had made a mistake on my problem. What you had discussed is about the SampleApp in Z-stack. But my question is about the SimpleAPP, which is an example that has collector and sensor nodes in it and the collector node could receive the temperature and voltage information from...
    on Aug 17, 2008
  • Forum Post: Global Variable not global?

    WorkingAgain? WorkingAgain?
    Using Z-Stack 1.4.2-1.1.0 with modified SimpleApp : I declared a global variable LAST_SMS in SimpleApp.h : static bool LAST_SMS; // indicating that all SMS of the session are sent during the run-time I set this varibale in SimpleCoordinator.c to TRUE: LAST_SMS = TRUE; According to the debugger...
    on Sep 10, 2008
  • Forum Post: How to add new functionallity to Z-stack SimpleApp Application (post without the formatting errors)

    Hazem Hazem
    Hello everyone, I hope you are all doing great. I would really appreciate your help in solving a problem I have been facing for more than 2 weeks now. I am a new programmer using the Z-stack (v1.4.3-1.2.1). I am currently working with the Zigbee Simple Api and using the application SimpleApp (with CC2430...
    on Oct 30, 2008
  • Forum Post: How to add NEW functionality to the SimpleApp in Z-Stack

    Hazem Hazem
    Hello everyone, I hope you are all doing great. I would really appreciate your help in solving a problem I have been facing for more than 2 weeks now. I am a new programmer using the Z-stack (v1.4.3-1.2.1). I am currently working with the Zigbee Simple Api and using the application SimpleApp (with...
    on Oct 30, 2008
  • Forum Post: Did anyone find LCD problem with SimpleApp in CC2430?

    foresightyj foresightyj
    I decided to output a few string in SimpleApp. Here is what I did: Go to Project->options->c/c++ compiler, in "Defined Symbols", I add a new line "LCD_SUPPORTED=DEBUG". I expect to see at least LCD initialization with IEEE 64bit address. However, nothing is shown on LCD...
    on Feb 11, 2009
  • Forum Post: Re: Trouble sending Over the air temp reading using a modified SimpleApp

    Hazem Hazem
    Hello, I am hoping someone could help me out with this issue because i have not been able to resolve it. Any suggestions would be very helpful. Thank you Hazem
    on Mar 18, 2009
  • Forum Post: Re: Trouble sending Over the air temp reading using a modified SimpleApp

    BrandonAzbell BrandonAzbell
    What drives your Finite State Machine? Is this a timer event? While you may define you FSM in a different file, I believe you will need to export the process call or main function call to the FSM into the SimpleSensor.c file and generate the appropriate timer events via the osal_start_timerEx() calls...
    on Apr 3, 2009
  • Forum Post: Re: Trouble sending Over the air temp reading using a modified SimpleApp

    Hazem Hazem
    Hi Brandon, Thank you very much for your feedback. The FSM is driven by external user input events. Basically by pushing various buttons on the SmartRF04EB evaluation board. I DO make the main call to the FSM from SimpleSensor.c. However, the FSM has a infinite loop inside of it and so once program...
    on Apr 6, 2009
  • Forum Post: Re: Trouble sending Over the air temp reading using a modified SimpleApp

    BrandonAzbell BrandonAzbell
    Hazem The FSM is driven by external user input events. Basically by pushing various buttons on the SmartRF04EB evaluation board. I DO make the main call to the FSM from SimpleSensor.c. However, the FSM has a infinite loop inside of it and so once program control is transfered to the FSM, it does...
    on Apr 7, 2009
  • Forum Post: Re: Trouble sending Over the air temp reading using a modified SimpleApp

    Hazem Hazem
    Hi Brandon, Thank you very much for the feedback. Actually i call the FSM main function (which is called OS_VS_Process()) from zb_HandleOsalEvent...the code is given at end of message. Basically here is what i am trying to do: I want to do the temperature measurement AND sending of resutls over the...
    on Apr 7, 2009
  • Forum Post: Re: Trouble sending Over the air temp reading using a modified SimpleApp

    Hazem Hazem
    Hi, Another follow up to your reply. I am also thinking that a solution to my issue could be that I start the complete Z-stack from inside the FSM. That way, i am able to access all z-stack functions and there will be no issues for function call backs. Do you know if this is possible, i have looked...
    on Apr 7, 2009
  • Forum Post: Re: Trouble sending Over the air temp reading using a modified SimpleApp

    BrandonAzbell BrandonAzbell
    You really should register a task for your FSM and use something like the GenericApp, or others, to get an example. The SimpleApp doesn't show this aspect of the architecture. Fundamentally, your application needs to run as a task to the Z-Stack environment which sort of acts like an "OS"...
    on Apr 13, 2009
  • Forum Post: Trouble sending Over the air temp reading using a modified SimpleApp

    Hazem Hazem
    Hello everyone, I hope you are all having an awesome new year so far. I would like your help with this scenario. I am working on a project using CC2430 and TI Z-stack Simple API using the SimpleApp. Here are the setup details Original TI SimpleApp setup: 1. One SmartRF04EB with CC2430 as SimpleSensor...
    on Jan 9, 2009
  • Forum Post: Re: Timing in SimpleApp of the Z-stack 1.4.3-1.2.1.

    ioio59fr ioio59fr
    Hi ! Yes there was just a coordinator and an End Device, no other devices. I will try and make a router instead of an ED. Thank you, best regards.
    on May 4, 2009
  • Forum Post: user descriptor problem

    Alberto Bordoni Alberto Bordoni
    Hi, I use CC2431 with SimpleApp application of ZigBee TI Samples. I want to change the application using the User Descriptor to identify a sensor node. I have just read how to access to User Descriptor in Z-stack, but I have same problems. I set the string of identification for SimpleSensor into ZDApp_InitUserDesc...
    on Jun 15, 2009
  • Forum Post: Timing in SimpleApp of the Z-stack 1.4.3-1.2.1.

    ioio59fr ioio59fr
    Hi everyone. I am currently making tests with the SimplApp of the Z-stack 1.4.3-1.2.1. This application enables the transmission of data (report of temperature and battery measure) from an end-device to the coordinator every 10 seconds for example. What I would like to do is transmit these data...
    on Apr 30, 2009
  • Forum Post: Re: Timing in SimpleApp of the Z-stack 1.4.3-1.2.1.

    ioio59fr ioio59fr
    Hi everyone ! I have tried to make the node a router instead of an End Device, but it doesn't work : no data is sent to the coordinator. Apparently the sensor has to be an End Device, or there is something I missed in the configuration. Any other idea ?? Thank you ! Best regards ! ioio59fr
    on Jun 16, 2009
  • Forum Post: Hyperterminal Strange caracters in SimpleApp

    Franz Gustav Niederheitmann Franz Gustav Niederheitmann
    Hi, we are testing the Sensor Data COllection Application (SimpleApp), and we are only receiving the strange caracters form the picture above when we start the Collector. Is it an configuration problem? Thanks,
    on Mar 26, 2010
  • Forum Post: Re: Hyperterminal Strange caracters in SimpleApp

    Franz Gustav Niederheitmann Franz Gustav Niederheitmann
    Grant, I tryed to use 9600 but it doesn't work, as you can see down in the picture . With 38400, it works, but i still have some ugly caracters apearing in the screen. I believe that the software must write: Device X Temperature XY C Voltage XY.Z V but this text before the numbers...
    on Mar 29, 2010
  • Forum Post: Z-stack 2.3.1 140 SimpleApp does not work on SmartRF05 EB Rv-1.8.1 why?

    ZEO ZHAO ZEO ZHAO
    Hi, everyone, So basically, in our projet, we r using : IAR 8051 751A, Z-stack 2.3.1-140, SmartRF05 EB Rv-1.8.1 and BB etc. the problem is that when the code of " simpleCollector " is downloaded to the EM, the LED_2 (RED) blinks and nothing happens, LED_3 (stay off), so according to the...
    on Nov 17, 2010
  • Forum Post: How to use cc2530EM + SmartRF05 EB 1.3

    Franz Gustav Niederheitmann Franz Gustav Niederheitmann
    Hi, One of our SmartRF05 EB 1.7 was burned while we were doing some experiments, and now we have just one. But we have 3 SmartRF05 EB 1.3 from our cc2520 kits, and we are trying to use cc2530EM + SmartRF05 EB 1.3 with Z-Stack 2.30 and SImpleApp The main problem is that it doesnt works the joystick...
    on Mar 26, 2010
  • Forum Post: A problem in downloading program to cc2530 with CC debugger

    Mohammed Tarek Kamel Mohammed Tarek Kamel
    Hello I downloaded the IAR 7.51 A and it identified the cc debugger in its drivers and I made and built a project (simple app) without any warnings or errors. When I downloaded the app incc2530 using CC debugger. it downloaded successfully but when it verifies the downloaded application. it gave...
    on Apr 25, 2011
  • Forum Post: Please Vote here in simple poll of Sample Applications / Demo Code you need or want!

    "Double 0" "Double 0"
    Hi there Z-Stack fans, We are considering streamlining the number of sample applications that are distributed in a future release of Z-Stack. This is because we have found the majority of users really only benefit from 3 main sample applications: GenericApp, SE Sample App, and HA Sample App. This...
    on Apr 8, 2011
  • Forum Post: Determining Routing Overhead

    David Rhodes David Rhodes
    Hi- We are experimenting with the Z-Stack sampleapp, and are wondering how to determine the number of routing packets (and size) sent and received at each router and at the coordinator. I've looked through the API and other documents but can't seem to find it. Is there either data that...
    on Jun 21, 2011
12
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