#ifndef __DSP_H__ #define __DSP_H__ /* * dsp.h * * Created: Mar 2021 * Author: Arjan te Marvelde * * See dsp.c for more information */ #include "pico/stdlib.h" #include "hardware/adc.h" #include "hardware/pwm.h" void dsp_init(); #endif