Merge pull request #1044 from porkybrain/master

Changed CircBuffer to take its size as a template parameters for efficientcy.
pull/1066/head
Martin Kojtal 2015-04-23 08:44:13 +01:00
commit 7c4831f300
3 changed files with 7 additions and 17 deletions

View File

@ -135,10 +135,10 @@ bool USBMSD::connect(bool blocking) {
}
void USBMSD::disconnect() {
USBDevice::disconnect();
//De-allocate MSD page size:
free(page);
page = NULL;
USBDevice::disconnect();
}
void USBMSD::reset() {

View File

@ -19,20 +19,10 @@
#ifndef CIRCBUFFER_H
#define CIRCBUFFER_H
template <class T>
template <class T, int Size>
class CircBuffer {
public:
CircBuffer(int length) {
write = 0;
read = 0;
size = length + 1;
buf = (T *)malloc(size * sizeof(T));
};
~CircBuffer() {
free(buf);
}
CircBuffer():write(0), read(0){}
bool isFull() {
return ((write + 1) % size == read);
};
@ -66,8 +56,8 @@ public:
private:
volatile uint16_t write;
volatile uint16_t read;
uint16_t size;
T * buf;
static const int size = Size+1; //a modern optimizer should be able to remove this so it uses no ram.
T buf[Size];
};
#endif

View File

@ -56,7 +56,7 @@ public:
* @param connect_blocking define if the connection must be blocked if USB not plugged in
*
*/
USBSerial(uint16_t vendor_id = 0x1f00, uint16_t product_id = 0x2012, uint16_t product_release = 0x0001, bool connect_blocking = true): USBCDC(vendor_id, product_id, product_release, connect_blocking), buf(128){
USBSerial(uint16_t vendor_id = 0x1f00, uint16_t product_id = 0x2012, uint16_t product_release = 0x0001, bool connect_blocking = true): USBCDC(vendor_id, product_id, product_release, connect_blocking){
settingsChangedCallback = 0;
};
@ -154,7 +154,7 @@ protected:
private:
FunctionPointer rx;
CircBuffer<uint8_t> buf;
CircBuffer<uint8_t,128> buf;
void (*settingsChangedCallback)(int baud, int bits, int parity, int stop);
};