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.

How to share global variable between multiple task??

Other Parts Discussed in Thread: CC3200

Hello,

I am using CC3200 LP, SDK 0.5.2 and TI RTOS. I have declared one character array globally in one header file.

static char buffer[50];

Now I have multiple tasks running simultaneously. One of the task modifies buffer value, I have noticed that in this same task buffer is successfully modified. But when I checked in another task value of buffer is null.

I don't want to use IPC. How can I share this buffer to multiple task..???

Thanks,

Niral