diff options
author | FreeArtMan <=> | 2015-09-19 17:22:11 +0100 |
---|---|---|
committer | FreeArtMan <=> | 2015-09-19 17:22:11 +0100 |
commit | 4d44686f727d65b82a7c43121b6e4290c8e3b7ec (patch) | |
tree | fb6b4594fa409adf5be9c3f34ae0fbab82413c6d | |
download | radiola-4d44686f727d65b82a7c43121b6e4290c8e3b7ec.tar.gz radiola-4d44686f727d65b82a7c43121b6e4290c8e3b7ec.zip |
Initial commit
-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 |