Search found 1 match
- Sun Nov 13, 2022 11:53 pm
- Forum: ESP-IDF
- Topic: Possibility of dumping all contents ESP32's Queue or Ring Buffer
- Replies: 1
- Views: 1052
Re: Possibility of dumping all contents ESP32's Queue or Ring Buffer
Queues and ring buffers do no allow for traversal by nature of being strictly FIFO. I'm not sure if you can make a deep copy of a queue/buffer. If you can then that's your answer. If you are not particularly constrained by time, I would suggest you pop each element off, make a copy and the push them...