diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | TODO | 13 | ||||
-rw-r--r-- | radiola.c | 7 | ||||
-rw-r--r-- | version.h | 0 |
5 files changed, 29 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d8ab784 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +radiola
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7f7d3b4 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +PROJECT=radiola +CC=gcc +CFLAGS= +LDFLAGS= + + +make: + $(CC) radiola.c -o $(PROJECT) @@ -0,0 +1,13 @@ +[TUNER] + set gain + set autogain + config frequency + choose device +[FILTER] + basic bandpass filter +[DRAW] + draw in SDL/OpenGL waterfall +[CORE] + multi threaded +[MOD] + fm demod
\ No newline at end of file diff --git a/radiola.c b/radiola.c new file mode 100644 index 0000000..40872c8 --- /dev/null +++ b/radiola.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include <stdlib.h> + +int main() +{ + return 0; +}
\ No newline at end of file diff --git a/version.h b/version.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/version.h |