Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
5 years, 7 months ago. This question has been closed. Reason: Too broad - no single answer
How to use the Queue API?
I haven't worked much with type T before, and us such I don't understand what it is asking for when initialising the queue.
I want to make a queue of chars only.
I tried to do this in the following way:
Queue API
template <class cChar> Queue<cChar,62> myQ;
But I got the following error:
"myQ" is not a function or static data member
I want to implement the same functionality as std::queue, where it is a queue of chars. I guess the example doesn't really help me, because I don't understand message_t at all unless it is the memory pool example, where I somewhat understand how message_t is made with a struct. I still feel mostly at loss with the pointers going around.
I'm working in the online compiler.
How would I implement a queue of chars?