Add implementation of analog TV signal generator (PAL so far)

Quick and dirty Howto:
make && tv/osmotv --sdr-soapy --sdr-tx-gain 60  -r 15000000 -c 21 tx-fubk --sdr-tune-args "OFFSET=-3000000"
This commit is contained in:
Andreas Eversberg
2017-08-20 07:43:41 +02:00
parent a52c89800c
commit 496aff5a79
22 changed files with 3071 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes) $(UHD_CFLAGS) $(SOAPY_CFLAGS)
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes) $(GRAPHICSMAGICK_CFLAGS) $(IMAGEMAGICK_CFLAGS) $(UHD_CFLAGS) $(SOAPY_CFLAGS)
noinst_LIBRARIES = libcommon.a libmobile.a
noinst_LIBRARIES = libcommon.a libmobile.a libimage.a
libcommon_a_SOURCES = \
sample.c \
@@ -31,6 +31,9 @@ libmobile_a_SOURCES = \
display_status.c \
main_mobile.c
libimage_a_SOURCES = \
img.c
if HAVE_SDR
AM_CPPFLAGS += -DHAVE_SDR
@@ -55,3 +58,7 @@ libcommon_a_SOURCES += \
soapy.c
endif
if ENABLE_MAGICK
AM_CPPFLAGS += -DWITH_MAGICK
endif