-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathCanMsgRingbuffer.h
72 lines (52 loc) · 2.35 KB
/
CanMsgRingbuffer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
CanMsgRingbuffer.h - Library for CAN message handling
Copyright (c) 2023 Arduino. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef ARDUINOCORE_API_CAN_MSG_RING_BUFFER_H_
#define ARDUINOCORE_API_CAN_MSG_RING_BUFFER_H_
/**************************************************************************************
* INCLUDE
**************************************************************************************/
#include <stdint.h>
#include "CanMsg.h"
/**************************************************************************************
* NAMESPACE
**************************************************************************************/
namespace arduino
{
/**************************************************************************************
* CLASS DECLARATION
**************************************************************************************/
class CanMsgRingbuffer
{
public:
static size_t constexpr RING_BUFFER_SIZE = 32U;
CanMsgRingbuffer();
inline bool isFull() const { return (_num_elems == RING_BUFFER_SIZE); }
void enqueue(CanMsg const & msg);
inline bool isEmpty() const { return (_num_elems == 0); }
CanMsg dequeue();
inline size_t available() const { return _num_elems; }
private:
CanMsg _buf[RING_BUFFER_SIZE];
volatile size_t _head;
volatile size_t _tail;
volatile size_t _num_elems;
inline size_t next(size_t const idx) const { return ((idx + 1) % RING_BUFFER_SIZE); }
};
/**************************************************************************************
* NAMESPACE
**************************************************************************************/
} /* arduino */
#endif /* ARDUINOCORE_API_CAN_MSG_RING_BUFFER_H_ */