Fixed wrong function signature in dsp.cpp causing linking errors
This commit is contained in:
parent
e954f3fda2
commit
b1a91603c8
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include <dsp.h>
|
||||
|
||||
void dsp_pwmCompensate(audio_sample_t *buffer, uint16_t length)
|
||||
void dsp_pwmCompensate(audio_sample_t *buffer, size_t length)
|
||||
{
|
||||
float u = 0.0f; // Current input value
|
||||
float y = 0.0f; // Current output value
|
||||
|
|
|
|||
Loading…
Reference in New Issue