0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-27 04:43:52 +01:00

change name

This commit is contained in:
2025-03-11 15:36:20 +01:00
parent bf2d273cd1
commit 9c9ce76893
5 changed files with 10 additions and 38 deletions

1
README.md Normal file
View File

@@ -0,0 +1 @@
# rds95

View File

@@ -1,25 +0,0 @@
## MiniRDS command list
Most commands are in the ASCII format, for RT you can use `TEXT` or `RT1`, however some comamnds werent yet transitioned to the new command syntax, and here they are:
### Commands
#### `MPX`
Set volumes in percent modulation for individual MPX subcarrier signals.
`MPX 0,9,9,9,9`
Carriers: (first to last)
Pilot tone
RDS 1
RDS 2 (67 khz)
RDS 2 (71 khz)
RDS 2 (76 khz)
#### `VOL`
Set the output volume in percent.
`VOL 100`
## Other
See src/supported_cmds.txt

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

View File

@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.10) cmake_minimum_required(VERSION 3.10)
# Project name and version # Project name and version
project(minirds VERSION 1.0) project(rds95 VERSION 1.0)
# Define options # Define options
option(ODA_RTP "Enable ODA (RT+)" ON) option(ODA_RTP "Enable ODA (RT+)" ON)
@@ -11,9 +11,13 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -Wextra -pedantic -O2 -std=c18
# Define sources # Define sources
set(SOURCES set(SOURCES
minirds.c rds95.c
waveforms.c waveforms.c
rds.c rds.c
control_pipe.c
modulator.c
lib.c
ascii_cmd.c
) )
if(ODA_RTP) if(ODA_RTP)
@@ -21,19 +25,11 @@ if(ODA_RTP)
add_definitions(-DODA_RTP) add_definitions(-DODA_RTP)
endif() endif()
set(SOURCES
${SOURCES}
control_pipe.c
modulator.c
lib.c
ascii_cmd.c
)
# Define the executable # Define the executable
add_executable(minirds ${SOURCES}) add_executable(rds95 ${SOURCES})
# Link additional libraries # Link additional libraries
target_link_libraries(minirds PRIVATE m pthread pulse pulse-simple) target_link_libraries(rds95 PRIVATE m pthread pulse pulse-simple)
# Install target # Install target
install(TARGETS minirds DESTINATION /usr/local/bin) install(TARGETS rds95 DESTINATION /usr/local/bin)