Skip to content

Commit

Permalink
AC_AutoTune: return freqresp ring buffers to original implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
bnsgeyer committed Jul 1, 2024
1 parent 15e183b commit 7eee01a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 19 deletions.
20 changes: 6 additions & 14 deletions libraries/AC_AutoTune/AC_AutoTune_FreqResp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,8 @@ void AC_AutoTune_FreqResp::init(InputType input_type, ResponseType response_type
max_meas_rate = 0.0f;
max_command = 0.0f;
dwell_cycles = cycles;
if (meas_peak_info_buffer != nullptr) {
meas_peak_info_buffer->clear();
}
if (tgt_peak_info_buffer != nullptr) {
tgt_peak_info_buffer->clear();
}
meas_peak_info_buffer.clear();
tgt_peak_info_buffer.clear();
cycle_complete = false;
}

Expand Down Expand Up @@ -263,16 +259,14 @@ void AC_AutoTune_FreqResp::push_to_meas_buffer(uint16_t count, float amplitude,
sample.curr_count = count;
sample.amplitude = amplitude;
sample.time_ms = time_ms;
if (meas_peak_info_buffer != nullptr) {
meas_peak_info_buffer->push(sample);
}
meas_peak_info_buffer.push(sample);
}

// pull measured peak info from buffer
void AC_AutoTune_FreqResp::pull_from_meas_buffer(uint16_t &count, float &amplitude, uint32_t &time_ms)
{
peak_info sample;
if ((meas_peak_info_buffer == nullptr) || !meas_peak_info_buffer->pop(sample)) {
if (!meas_peak_info_buffer.pop(sample)) {
// no sample
return;
}
Expand All @@ -288,16 +282,14 @@ void AC_AutoTune_FreqResp::push_to_tgt_buffer(uint16_t count, float amplitude, u
sample.curr_count = count;
sample.amplitude = amplitude;
sample.time_ms = time_ms;
if (tgt_peak_info_buffer != nullptr) {
tgt_peak_info_buffer->push(sample);
}
tgt_peak_info_buffer.push(sample);
}

// pull target peak info from buffer
void AC_AutoTune_FreqResp::pull_from_tgt_buffer(uint16_t &count, float &amplitude, uint32_t &time_ms)
{
peak_info sample;
if ((tgt_peak_info_buffer == nullptr) || !tgt_peak_info_buffer->pop(sample)) {
if (!tgt_peak_info_buffer.pop(sample)) {
// no sample
return;
}
Expand Down
7 changes: 2 additions & 5 deletions libraries/AC_AutoTune/AC_AutoTune_FreqResp.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ class AC_AutoTune_FreqResp {
// Constructor
AC_AutoTune_FreqResp()
{
// ring buffers sized to for more cycles than are needed. Most cycles needed are 6.
meas_peak_info_buffer = NEW_NOTHROW ObjectBuffer<peak_info>(12);
tgt_peak_info_buffer = NEW_NOTHROW ObjectBuffer<peak_info>(12);
}

// Enumeration of input type
Expand Down Expand Up @@ -183,10 +180,10 @@ class AC_AutoTune_FreqResp {
};

// Buffer object for measured peak data
ObjectBuffer<peak_info> *meas_peak_info_buffer;
ObjectBuffer<peak_info> meas_peak_info_buffer{12};

// Buffer object for target peak data
ObjectBuffer<peak_info> *tgt_peak_info_buffer;
ObjectBuffer<peak_info> tgt_peak_info_buffer{12};

// Push data into measured peak data buffer object
void push_to_meas_buffer(uint16_t count, float amplitude, uint32_t time_ms);
Expand Down

0 comments on commit 7eee01a

Please sign in to comment.