From d4c7334a96c062f18b9894144ca734c16af2f87d Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 25 Jan 2025 23:49:31 +0100 Subject: [PATCH] modify read me --- .vscode/.server-controller-port.log | 2 +- README.md | 4 +++- src/{stereo_coder.c => fm95.c} | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) rename src/{stereo_coder.c => fm95.c} (99%) diff --git a/.vscode/.server-controller-port.log b/.vscode/.server-controller-port.log index 3e41ae3..bbc989c 100644 --- a/.vscode/.server-controller-port.log +++ b/.vscode/.server-controller-port.log @@ -1,5 +1,5 @@ { "port": 13452, - "time": 1737842835132, + "time": 1737845288156, "version": "0.0.3" } \ No newline at end of file diff --git a/README.md b/README.md index c141fac..d7e67e9 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,12 @@ FM95 is a audio processor for FM, it does: - SSB Stereo - Polar Stereo - Polar SSB Stereo (huh) +- TODO: SCA Supports 2 inputs: - Audio (via Pulse) - MPX (via Pulse) + and one output: - MPX (via Pulse or ALSA) @@ -24,7 +26,7 @@ SCAMod is a simple FM modulator which can be used to modulate a secondary audio Has a fine quality, but as it goes for 12 khz fm signals # How to compile? -To compile you need `cmake` and `libpulse-dev`, if you have those then do these commands: +To compile you need `cmake`, `libasound2-dev` and `libpulse-dev`, if you have those then do these commands: ``` mkdir build cd build diff --git a/src/stereo_coder.c b/src/fm95.c similarity index 99% rename from src/stereo_coder.c rename to src/fm95.c index 23fe7e2..25c7f36 100644 --- a/src/stereo_coder.c +++ b/src/fm95.c @@ -69,7 +69,7 @@ static void stop(int signum) { } void show_version() { - printf("FM95 (an FM Processor by radio95) version 1.0\n"); + printf("fm95 (an FM Processor by radio95) version 1.0\n"); } void show_help(char *name) {