34 lines
500 B
C
34 lines
500 B
C
/*
|
|
* test_tuner_thread.c
|
|
*
|
|
* Created on: May 30, 2018
|
|
* Author: Ezra Taimuty-Loomis
|
|
*/
|
|
|
|
/*
|
|
* program to test tuner + demod control implementation
|
|
* will be mirrored in main source after designing here
|
|
*/
|
|
|
|
/* includes */
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
//TODO revise or replace this dependency
|
|
#include "../../rtl-sdr/src/rtl_fm.c"
|
|
|
|
/* defines */
|
|
|
|
|
|
/* global variable declarations */
|
|
|
|
|
|
//struct tuning_interface tuner;
|
|
|
|
/* function declarations */
|
|
|
|
int main(void){
|
|
return 0;
|
|
}
|
|
|