Comment on page
Signal levels
One thing that you might have noticed from the passthrough example is that the output signal is not very loud. To correct this, we can add a gain factor to the
process
function that multiplies each signal sample by a constant.In order to take advantage of the architecture of the microcontroller's internal multiplier, it is recommended to use factors that are a power of 2 since in this case a multiplication corresponds to a simple binary shift of the integer values to the left. We measured
difference in processing time when tested with the first voice transformer algorithm.
In general, in DSP applications we assume that input signals are zero mean. This is no different in the case of our microphone, so that, if there is no sound, we expect a sequence of zeros. If you actually look at the input samples, however, you will almost certainly find out that this is not so. In fact, the internal circuitry in the microphone almost always adds a voltage offset, and sometimes different microphones (of the same manufacturer) will have different offsets. We typically call this shift in the waveform a DC offset/noise/bias.
DC offsets are highly undesirable since they limit the dynamic range of our system; in other words, we are "wasting" binary digits on a constant that serves no purpose.
TASK 1: From your passthrough implementation, determine the value of the offset. Is it significant compared to the range of the microphone?
Hint: put a breakpoint in the process function while being quiet; then with the debug tool, check the content of the input buffer.
We have talked about DC offset removal in Lecture 2.2.3 in the second DSP course. Recall that a DC component corresponds to a nonzero frequency value at
so the idea is to use a filter with a zero in
A very simple example is the so-called FIR "DC notch" whose CCDE is simply
Unfortunately this filter has the very poor frequency response shown here and, while good as a first approximation, it is not really recommended if audio quality is important to you.

Frequency response of the FIR DC notch
A better filter is obtained by using a an IIR DC notch which, while marginally more expensive computationally, provides a much flatter frequency response over the audio frequency band:
When
is close to (but less than) one, we can get a magnitude response like this:

Frequency response of the IIR DC notch
TASK 2: Assume that our input samples are between -1 and +1 and are encoded as signed 16-bit integers. Write a C function that implements an IIR DC notch with
using integer arithmetic.
Anti-spoiler tab
Task 1
Task 2
Are you sure you are ready to see the solution? ;)
When the code is running, you can double click on any line number to add a breakpoint.
We suggest you to ad a breakpoint at line 430:

Figure: Breakpoint set at line 430
If the micro-controller is connected and a debug session is ongoing, you will see a change in the software and the following list:

Figure: Execution call hierarchy when stopped at a brakepoint
It is the hierarchy of the function executed by the micro-controller, indeed main() is the root. Please note that the button Skip All Breakpoints should not be activated for the micro-controller to stop at the given line.

Figure: Breakpoint bypass button
It is then possible to right-click in the editor and press Add Watch Expression you can now enter the name of the variable you want to explore and it will show up in the Expression viewer panel. Unfold the array and you should see something close to this:

Figure: Variable watch panel
Notice that even if the values are fluctuating, the average is around -1540. This is the offset that we where looking for. It is introduced by the microphone and can be variable from one sample to an other.
- performing the multiplication in double precision and rescaling
- sinceandare usually close in value (audio signals do not swing wildly), the chance of overflow in the addition and subtraction is negligible
#define LAMBDA 0x00007999 // (int_32_t)(0.9 * 32768);
static inline int16_t DCNotch(int16_t x) {
static int16_t x_prev = 0;
static int16_t y_prev = 0;
y_prev = (((int32_t)y_prev * 0x00007999) >> 16) - x_prev + x;
x_prev = x;
return y_prev;
}
The above DC notch is better than the simple one-step difference, but it can be made better with respect to its fixed-point implementation. Here is an interesting article about that.
Last modified 3yr ago