uSDR-pico/dsp.h

22 wiersze
277 B
C
Czysty Zwykły widok Historia

#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();
void dsp_ptt(bool active);
#endif