Skip to content

Commit

Permalink
AC_AutoTune: use new new macro
Browse files Browse the repository at this point in the history
  • Loading branch information
bnsgeyer authored Jun 16, 2024
1 parent 7aa2f11 commit 19605d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/AC_AutoTune/AC_AutoTune_FreqResp.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class AC_AutoTune_FreqResp {
AC_AutoTune_FreqResp()
{
dwell_cycles = 6;
meas_peak_info_buffer = new ObjectBuffer<peak_info>(dwell_cycles);
tgt_peak_info_buffer = new ObjectBuffer<peak_info>(dwell_cycles);
meas_peak_info_buffer = NEW_NOTHROW ObjectBuffer<peak_info>(dwell_cycles);
tgt_peak_info_buffer = NEW_NOTHROW ObjectBuffer<peak_info>(dwell_cycles);
}

// Enumeration of input type
Expand Down

0 comments on commit 19605d2

Please sign in to comment.