bytequeue.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. #ifndef BYTEQUEUE_H
  20. #define BYTEQUEUE_H
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #include <inttypes.h>
  25. #include <stdbool.h>
  26. typedef uint8_t byteQueueIndex_t;
  27. typedef struct {
  28. byteQueueIndex_t start;
  29. byteQueueIndex_t end;
  30. byteQueueIndex_t length;
  31. uint8_t * data;
  32. } byteQueue_t;
  33. //you must have a queue, an array of data which the queue will use, and the length of that array
  34. void bytequeue_init(byteQueue_t * queue, uint8_t * dataArray, byteQueueIndex_t arrayLen);
  35. //add an item to the queue, returns false if the queue is full
  36. bool bytequeue_enqueue(byteQueue_t * queue, uint8_t item);
  37. //get the length of the queue
  38. byteQueueIndex_t bytequeue_length(byteQueue_t * queue);
  39. //this grabs data at the index given [starting at queue->start]
  40. uint8_t bytequeue_get(byteQueue_t * queue, byteQueueIndex_t index);
  41. //update the index in the queue to reflect data that has been dealt with
  42. void bytequeue_remove(byteQueue_t * queue, byteQueueIndex_t numToRemove);
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif