-
Notifications
You must be signed in to change notification settings - Fork 0
/
Buff.h
53 lines (46 loc) · 1.49 KB
/
Buff.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
//------------------------------------------------------------------------
// Copyright(c) 2024 Dad Design.
//
// Classe de gestion d'un buffer mémoire
//-----------------------------------------------------------------------
#pragma once
#include "stdint.h"
namespace Dad {
class cBuff{
public:
cBuff(uint16_t TailleFIFO){
m_pStartBuff = new uint8_t[TailleFIFO];
m_pEndBuff = &m_pStartBuff[TailleFIFO];
Clear();
};
~cBuff(){
delete [] m_pStartBuff;m_pStartBuff = nullptr;
m_pEndBuff = nullptr;
Clear();
};
inline bool addData(uint8_t Data){
if(m_pNextData < m_pEndBuff){
*m_pNextData++ = Data;
m_NbData++;
return true;
}else{
return false;
}
}
inline void Clear(){
m_pNextData = m_pStartBuff;
m_NbData = 0;
}
inline uint8_t *getBuffPtr(){
return m_pStartBuff;
}
inline uint16_t getNbData(){
return m_NbData;
}
protected :
uint8_t * m_pStartBuff=nullptr; // Pointe sur l'adresse mémoire du buffer
uint8_t * m_pEndBuff=nullptr; // Pointe sur la dernière adresse mémoire du buffer
uint8_t * m_pNextData=nullptr; // Pointe sur la prochaine entree du buffer
uint16_t m_NbData; // Nombre de données dans le buffer
};
}