Codebase list gr-dab / 6383269
New upstream version 0.4 Ruben Undheim 4 years ago
3 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
4141 list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules)
4242
4343 # Set the version information here
44 set(VERSION_MAJOR 1)
45 set(VERSION_API 0)
44 set(VERSION_MAJOR 3)
45 set(VERSION_API 8)
4646 set(VERSION_ABI 0)
47 set(VERSION_PATCH git)
47 #set(VERSION_PATCH git)
4848
4949 cmake_policy(SET CMP0011 NEW)
5050
0 #!/usr/bin/env python2
0 #!/usr/bin/env python3
11 # -*- coding: utf-8 -*-
22 #
33 # Copyright 2018 by Ruben Undheim
9898 tb = top_block_cls()
9999 tb.start()
100100 try:
101 raw_input('Press Enter to quit: ')
101 input('Press Enter to quit: ')
102102 except EOFError:
103103 pass
104104 tb.stop()
8888
8989
9090 fg.start()
91 raw_input("Running..")
91 input("Running..")
9292 #new = grdab.dabplus_audio_decoder_ff(grdab.parameters.dab_parameters(mode=1, sample_rate=samp_rate, verbose=False), 64, 304, 64, 1, True)
9393 #newaudio = audio.sink(44100, '', True)
9494 fg.stop()