Fixed wrong function signature in dsp.cpp causing linking errors

This commit is contained in:
Silvano Seva 2021-09-05 19:03:29 +02:00
parent e954f3fda2
commit b1a91603c8
1 changed files with 1 additions and 1 deletions

View File

@ -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