uSDR-pico/dsp.h

22 wiersze
283 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"
extern volatile bool tx_enabled;
void dsp_init();
#endif