Baro sim: Add ringbuffer namespace

This commit is contained in:
Lorenz Meier 2015-05-25 10:00:31 +02:00
parent 5c535845ab
commit e9c2dc563f
1 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ protected:
struct work_s _work; struct work_s _work;
unsigned _measure_ticks; unsigned _measure_ticks;
RingBuffer *_reports; ringbuffer::RingBuffer *_reports;
bool _collect_phase; bool _collect_phase;
unsigned _measure_phase; unsigned _measure_phase;
@ -259,7 +259,7 @@ BAROSIM::init()
} }
/* allocate basic report buffers */ /* allocate basic report buffers */
_reports = new RingBuffer(2, sizeof(baro_report)); _reports = new ringbuffer::RingBuffer(2, sizeof(baro_report));
if (_reports == nullptr) { if (_reports == nullptr) {
debug("can't get memory for reports"); debug("can't get memory for reports");