pull/973/head
Jethro Carr 2023-01-23 16:22:32 +13:00
rodzic ab5d7a73c1
commit 23a9b035bf
3 zmienionych plików z 9 dodań i 0 usunięć

3
.gitmodules vendored 100644
Wyświetl plik

@ -0,0 +1,3 @@
[submodule "decoder_modules/sdrpp_radiosonde"]
path = decoder_modules/sdrpp_radiosonde
url = https://github.com/dbdexter-dev/sdrpp_radiosonde.git

Wyświetl plik

@ -61,6 +61,7 @@ option(OPT_BUILD_M17_DECODER "Build the M17 decoder module (Dependencies: codec2
option(OPT_BUILD_METEOR_DEMODULATOR "Build the meteor demodulator module (no dependencies required)" ON)
option(OPT_BUILD_RADIO "Main audio modulation decoder (AM, FM, SSB, etc...)" ON)
option(OPT_BUILD_WEATHER_SAT_DECODER "Build the HRPT decoder module (no dependencies required)" OFF)
option(OPT_BUILD_RADIOSONDE_DECODER "Build the radiosonde decoder module (no dependencies required)" ON)
# Misc
option(OPT_BUILD_DISCORD_PRESENCE "Build the Discord Rich Presence module" ON)
@ -203,6 +204,10 @@ if (OPT_BUILD_WEATHER_SAT_DECODER)
add_subdirectory("decoder_modules/weather_sat_decoder")
endif (OPT_BUILD_WEATHER_SAT_DECODER)
if (OPT_BUILD_RADIOSONDE_DECODER)
add_subdirectory("decoder_modules/sdrpp_radiosonde")
endif(OPT_BUILD_RADIOSONDE_DECODER)
# Misc
if (OPT_BUILD_DISCORD_PRESENCE)

@ -0,0 +1 @@
Subproject commit a7498a54fb6afe7e7f0a744dc15a0dc256a52fe1