Hi every one.
I am new with FreeRTOS but getting very strange problem.I have one device having msp430F1611 with CC2420 radio, which send packets at 25 Hz.Another device having the same specification but its sends the packets at 200Hz. (Both devices are programed with FreeRTOS)when i trun on one device alone it works fine but if I trun on both devices together then the device(50Hz) sending packet for a some interval and after that it get hanged or stops sending packets…could any one please guide me what is the problem with the code provided below…it would be nice if someone gives some comments.
Thanks.
//create and open socket
n_socket = socket(MODULE_NUDP, 0);
if (!n_socket)
{
debug("P: Socket creation failed.\r\n");
LED2_ON();
return; /* Exit */
}
for (;
{
if (n_socket)
{
n_buffer = socket_buffer_get(n_socket);
if (n_buffer)
{
//allocate buffer
//reading adc values and put in the buffer after that send them
}
}