This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/SMARTRF06EBK: CCS/SMARTRF06EBK

Part Number: SMARTRF06EBK
Other Parts Discussed in Thread: CC1310

Tool/software: Code Composer Studio

I have 3 SmartRF06 and would like to design in a way that one of it will be the master receiving data from the other 2 boards (acts as nodes). The nodes will send the light sensor data to the master. I used the example code in the Sensor Controller Studio and i was able to receive the data to the computer. But, how am I going to send the data to the master through CC1310 to the master?

  • Please take a look at simplelink_academy. One of the Sensor Controller Studio sessions (Task Creation and Control) covers how to integrate a sensor controller project with RF.
  • Hi there.I cant find my board there. I am using the on-board light sensor, is it possible? I am quite new to this board
  • The method on how to integrate a SCS project with RF is the same regardless of board. If you have the SCS part up and running you can use the description in the Simple Link academy to add RF to send whatever data.
  • Hi. I planned to use the rfWsnNode for my node project. The question now is how can i implement sleep for 20 minutes before sending a new data and shut down the sensors?
  • It's some different ways to do this:
    1. If you do not have any other tasks, you can use task_sleep to sleep for x seconds before doing anything.
    2. Set up a clock for x seconds period and have a clock_start in your callback function and do the sending data in the clock function. You can refer to the clock example for more information.
  • void sendAck()
    {
    txPacket[0] = DATA_PACKET_TYPE_ACK;
    txPacket[1] = 0x3;
    txPacket[1] = 0x1A36A9;

    RF_EventMask result = RF_runCmd(rfHandle, (RF_Op*)&RF_cmdPropTx, RF_PriorityNormal, NULL, RF_EventLastCmdDone);
    if (!(result & RF_EventLastCmdDone))
    {
    /* Error */
    while(1);
    }

    I have this sendAck in my Concentrator board and would like to receive in my node board. the question now is, how can i verify whether the code send is the same?