bytequeue.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // this is a single reader [maybe multiple writer?] byte queue
  2. // Copyright 2008 Alex Norman
  3. // writen by Alex Norman
  4. //
  5. // This file is part of avr-bytequeue.
  6. //
  7. // avr-bytequeue is free software: you can redistribute it and/or modify
  8. // it under the terms of the GNU General Public License as published by
  9. // the Free Software Foundation, either version 3 of the License, or
  10. //(at your option) any later version.
  11. //
  12. // avr-bytequeue is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. // GNU General Public License for more details.
  16. //
  17. // You should have received a copy of the GNU General Public License
  18. // along with avr-bytequeue. If not, see <http://www.gnu.org/licenses/>.
  19. #pragma once
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #include <inttypes.h>
  24. #include <stdbool.h>
  25. typedef uint8_t byteQueueIndex_t;
  26. typedef struct {
  27. byteQueueIndex_t start;
  28. byteQueueIndex_t end;
  29. byteQueueIndex_t length;
  30. uint8_t* data;
  31. } byteQueue_t;
  32. // you must have a queue, an array of data which the queue will use, and the length of that array
  33. void bytequeue_init(byteQueue_t* queue, uint8_t* dataArray, byteQueueIndex_t arrayLen);
  34. // add an item to the queue, returns false if the queue is full
  35. bool bytequeue_enqueue(byteQueue_t* queue, uint8_t item);
  36. // get the length of the queue
  37. byteQueueIndex_t bytequeue_length(byteQueue_t* queue);
  38. // this grabs data at the index given [starting at queue->start]
  39. uint8_t bytequeue_get(byteQueue_t* queue, byteQueueIndex_t index);
  40. // update the index in the queue to reflect data that has been dealt with
  41. void bytequeue_remove(byteQueue_t* queue, byteQueueIndex_t numToRemove);
  42. #ifdef __cplusplus
  43. }
  44. #endif