Fix WS2812 led definition
[inav.git] / src / main / common / circular_queue.c
blob2a3c8a8bc2cd63e7968a7837e6e6ac0637490de6
1 /*
2 * This file is part of INAV Project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
6 * You can obtain one at http://mozilla.org/MPL/2.0/.
8 * Alternatively, the contents of this file may be used under the terms
9 * of the GNU General Public License Version 3, as described below:
11 * This file is free software: you may copy, redistribute and/or modify
12 * it under the terms of the GNU General Public License as published by the
13 * Free Software Foundation, either version 3 of the License, or (at your
14 * option) any later version.
16 * This file is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
19 * Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see http://www.gnu.org/licenses/.
25 #include "circular_queue.h"
27 void circularBufferInit(circularBuffer_t *circular_buffer, uint8_t *buffer, size_t buffer_size,
28 size_t buffer_element_size) {
29 circular_buffer->buffer = buffer;
30 circular_buffer->bufferSize = buffer_size;
31 circular_buffer->elementSize = buffer_element_size;
32 circular_buffer->head = 0;
33 circular_buffer->tail = 0;
34 circular_buffer->size = 0;
37 void circularBufferPushElement(circularBuffer_t *circularBuffer, uint8_t *element) {
38 if (circularBufferIsFull(circularBuffer))
39 return;
41 memcpy(circularBuffer->buffer + circularBuffer->tail, element, circularBuffer->elementSize);
43 circularBuffer->tail += circularBuffer->elementSize;
44 circularBuffer->tail %= circularBuffer->bufferSize;
45 circularBuffer->size += 1;
48 void circularBufferPopHead(circularBuffer_t *circularBuffer, uint8_t *element) {
49 memcpy(element, circularBuffer->buffer + circularBuffer->head, circularBuffer->elementSize);
51 circularBuffer->head += circularBuffer->elementSize;
52 circularBuffer->head %= circularBuffer->bufferSize;
53 circularBuffer->size -= 1;
56 int circularBufferIsFull(circularBuffer_t *circularBuffer) {
57 return circularBufferCountElements(circularBuffer) * circularBuffer->elementSize == circularBuffer->bufferSize;
60 int circularBufferIsEmpty(circularBuffer_t *circularBuffer) {
61 return circularBuffer==NULL || circularBufferCountElements(circularBuffer) == 0;
64 size_t circularBufferCountElements(circularBuffer_t *circularBuffer) {
65 return circularBuffer->size;