All,
I am using simpliciti on an MSP430FG468 and CC2500 board. I am using the latest versions of all software (CCS). I am trying to get the AP as Data Hub as portion to work, I have changed nothing and it is not working.
The behavior that I am seeing is that the AP's LEDS remain constant and the ED's lights toggle on an off about once a second. This indicates to me that the ED is not joining the network.
In debugging, we found that in the Data hub portion was not entering
if (sJoinSem && (sNumCurrentPeers < NUM_CONNECTIONS))
{
/* listen for a new connection */
while (1)
{
if (SMPL_SUCCESS == SMPL_LinkListen(&sLID[sNumCurrentPeers]))
{
break;
}
/* Implement fail-to-link policy here. otherwise, listen again. */
}
this because the semaphore is never altering off 0. Should it be altering on its own? or dI need to set this? Thanks