JvanKatwijk / dab-cmdline

DAB decoding library with example of its use
GNU General Public License v2.0
57 stars 29 forks source link

Cmake error compiling the python example #12

Closed andreacampanella closed 6 years ago

andreacampanella commented 7 years ago

I'm really confused about the way I should compile the python example, I'm following the README ,but the cmake ( cmake .. -DSDRPLAY=ON) command generate a rather cryptic error :

CMake Error: The following variables are used in this project, but they are set to NOTFOUND. Please set them or make sure they are set and tested correctly in the CMake files: SDRPLAYLIB_INCLUDE_DIR used as include directory in directory /home/andrea/dab-cmdline/python-example used as include directory in directory /home/andrea/dab-cmdline/python-example

andreacampanella commented 7 years ago

Ok, I managed to compile this , I was using the wrong define, using -DRTLSDR I can compile it. but now I have another problem , if I run python3 cmdline.py -d 5 -c 12A -p "Fix Radio"

I get :

device restarted ofdm word gestart no DAB signal detected, giving up no ensemble found, giving up

I had to choose python3.4m instead of python3.5m to make it working on the raspberry pi .

I'm trying to make a digital radio receiver without a screen attached, I'm really finding difficult, there is not a single working or ready piece of software to use the raspberry as DAB receiver via command line, I can't get it...

andimik commented 7 years ago

Have you tried eti-stuff (including eti-cmdline) as well?

This is much easier and stable.

andreacampanella commented 7 years ago

hey andimik , thank!

Looks like that eti-stuff is more polished and stable :)

JvanKatwijk commented 7 years ago

Hi I was on (an internet free) holiday, so actually I did not read mail for app 4 weeks. I really can recommend that. Wrt your issue: What you get (your mail) is just that it works fine. probably the gain has to be set differently

In the same environment as the Python example you'll find a well working command line version.

best jan

2017-06-15 10:52 GMT+02:00 Andrea Campanella notifications@github.com:

Ok, I managed to compile this , I was using the wrong define, using -DRTLSDR I can compile it. but now I have another problem , if I run python3 cmdline.py -d 5 -c 12A -p "Fix Radio"

I get :

device restarted ofdm word gestart no DAB signal detected, giving up no ensemble found, giving up

I had to choose python3.4m instead of python3.5m to make it working on the raspberry pi .

I'm trying to make a digital radio receiver without a screen attached, I'm really finding difficult, there is not a single working or ready piece of software to use the raspberry as DAB receiver via command line, I can't get it...

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/JvanKatwijk/dab-cmdline/issues/12#issuecomment-308670415, or mute the thread https://github.com/notifications/unsubscribe-auth/AITzwJdr3Ai7MMm8RHu0YydgN1gHcnW1ks5sEPCwgaJpZM4N4q8p .

-- Jan van Katwijk

+31 (0)15 3698980 +31 (0) 628260355

jehutting commented 7 years ago

THANKS a lot @andreacampanella.

I was struggling to get this library/example-1 working for the exact same purpose as you do: having a stand-alone -without screen- DAB receiver/player. I was using the wrong define too.

Although the python-example still fails

$ python3 cmdline.py 
device restarted
ofdm word gestart
no DAB signal detected, giving up
no ensemble found, giving up

(and installing python3.4 gives me import errors as numpy/multiarrays/... and I don't know how all this relates to python3.5, the latest and greatest on the Raspbian Stretch)

I'm now able to compile example-1 (after I patched it...

$ git diff
diff --git a/example-1/main.cpp b/example-1/main.cpp
index 010f85b..aa83ddd 100644
--- a/example-1/main.cpp
+++ b/example-1/main.cpp
@@ -115,10 +115,11 @@ void      dataOut_Handler (std::string dynamicLabel, void *ctx) {
 }

 static
-void   bytesOut_Handler (uint8_t *data, int16_t amount, void *ctx) {
+void   bytesOut_Handler (uint8_t *data, int16_t amount, uint8_t type, void *ctx) {
        (void)data;
        (void)amount;
        (void)ctx;
+       (void)type;
 }
 //
 //     The function is called from within the library with

).

So, cmake .. -DRTLSDR=ON (in the created build directory of example-1) followed by make, gives dab-rtlsdr. Note: during my struggle I installed/removed a lot of packages; hang-on while building/compiling :-)

For example

$ ./dab-rtlsdr -C 12C -P "NPO Radio 2"
dab_cmdline,                      Copyright 2017 J van Katwijk, Lazy Chair Computing
OK, functions seem to be loaded
Found Rafael Micro R820T tuner
[R82XX] PLL not locked!
samplerate set to 2048000
Supported gain values (29): 0.0 0.9 1.4 2.7 3.7 7.7 8.7 12.5 14.4 15.7 16.6 19.7 20.7 22.9 25.4 28.0 29.7 32.8 33.8 36.4 37.2 38.6 40.2 42.1 43.4 43.9 44.5 48.0 49.6 
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.front.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM front
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround21
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround21
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround40.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround40
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround41
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround50
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround51
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround71.0:CARD=0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround71
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.iec958.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM iec958
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.iec958.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM spdif
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.iec958.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM spdif
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.modem
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.modem
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'defaults.bluealsa.device'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:4996:(snd_config_expand) Args evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM bluealsa
ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'defaults.bluealsa.device'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:4996:(snd_config_expand) Args evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM bluealsa
ALSA lib pcm_dmix.c:990:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
ALSA lib pcm_dmix.c:990:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
ALSA lib pcm_dmix.c:990:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
connect(2) call to /tmp/jack-1001/default/jack_0 failed (err=No such file or directory)
attempt to connect to server failed
Hostapis: 2
Api 0 is ALSA
Api 1 is OSS
selecting device default
device bcm2835 ALSA: - (hw:0,0) seems available as 0
device bcm2835 ALSA: IEC958/HDMI (hw:0,1) seems available as 1
device sysdefault seems available as 3
device dsp0 seems available as 4
device dmixer seems available as 5
device dmix seems available as 6
device default seems available as 7
Suggested size for outputbuffer = 1280
ofdm word gestart
there might be a DAB signal here
NPO Soul & Jazz  (8206) is part of the ensemble
NPO FunX Sl.Jamz (8217) is part of the ensemble
NPO FunX         (8209) is part of the ensemble
NPO SterrenNL    (8212) is part of the ensemble
NPO Radio 4      (8204) is part of the ensemble
NPO 3FM          (8203) is part of the ensemble
NPO Radio 5      (8205) is part of the ensemble
NPO 3FM KX Radio (8214) is part of the ensemble
NPO Radio 4 Con. (8215) is part of the ensemble
ensemble NPO              is (8001) recognized
NPO Radio 1      (8201) is part of the ensemble
NPO FunX Dance   (8216) is part of the ensemble
NPO 3FM Alterna. (8210) is part of the ensemble
NPO Radio 2      (8202) is part of the ensemble

going to start program NPO Radio 2
selected NPO Radio 2
    startaddress    = 0
    length      = 72
    subChId     = 1
    protection  = 2
    bitrate     = 96
we have now DAB+

I don't know (yet) what ALSA complains about, but it just works!!!

@JvanKatwijk "Uiteraard een grote DANKUWEL voor de library en het voorbeeld programma!".

JvanKatwijk commented 6 years ago

apologies for the late reply. I was/am in the process of changing from one laptop to another and - while the new laptop as such is an improvement - the process is a nightmare.

It is not easy to get the software up. It took actually quite a while before the python example was running on my new laptop. Do not nother about the complaints of alsa, I do not think anyone understands that. The important thing is that sound is coming out.

Your first example merely shows that no reasonable signal could be identified. Your second example makes me feel good.

Thanks for the comment best jan

2017-10-15 8:59 GMT+02:00 Jozef Hutting notifications@github.com:

THANKS a lot @andreacampanella https://github.com/andreacampanella.

I was struggling to get this library/example-1 working for the exact same purpose as you do: having a stand-alone -without screen- DAB receiver/player. I was using the wrong define too.

Although the python-example still fails

$ python3 cmdline.py device restarted ofdm word gestart no DAB signal detected, giving up no ensemble found, giving up

(and installing python3.4 gives me import errors as numpy/multiarrays/... and I don't know how all this relates to python3.5, the latest and greatest on the Raspbian Stretch)

I'm now able to compile example-1 (after I patched it...

$ git diff diff --git a/example-1/main.cpp b/example-1/main.cpp index 010f85b..aa83ddd 100644 --- a/example-1/main.cpp +++ b/example-1/main.cpp @@ -115,10 +115,11 @@ void dataOut_Handler (std::string dynamicLabel, void *ctx) { }

static -void bytesOut_Handler (uint8_t data, int16_t amount, void ctx) { +void bytesOut_Handler (uint8_t data, int16_t amount, uint8_t type, void ctx) { (void)data; (void)amount; (void)ctx;

  • (void)type; } // // The function is called from within the library with

).

So, cmake .. -DRTLSDR=ON (in the created build directory of example-1) followed by make, gives dab-rtlsdr. Note: during my struggle I installed/removed a lot of packages; hang-on while building/compiling :-)

For example

$ ./dab-rtlsdr -C 12C -P "NPO Radio 2" dab_cmdline, Copyright 2017 J van Katwijk, Lazy Chair Computing OK, functions seem to be loaded Found Rafael Micro R820T tuner [R82XX] PLL not locked! samplerate set to 2048000 Supported gain values (29): 0.0 0.9 1.4 2.7 3.7 7.7 8.7 12.5 14.4 15.7 16.6 19.7 20.7 22.9 25.4 28.0 29.7 32.8 33.8 36.4 37.2 38.6 40.2 42.1 43.4 43.9 44.5 48.0 49.6 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.front.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM front ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround21 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround21 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround40.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround40 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround41 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround50 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround51.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround51 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.surround71.0:CARD=0' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM surround71 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.iec958.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM iec958 ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.iec958.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM spdif ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'cards.bcm2835.pcm.iec958.0:CARD=0,AES0=4,AES1=130,AES2=0,AES3=2' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM spdif ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.modem ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.modem ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'defaults.bluealsa.device' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:4996:(snd_config_expand) Args evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM bluealsa ALSA lib confmisc.c:1281:(snd_func_refer) Unable to find definition 'defaults.bluealsa.device' ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:4996:(snd_config_expand) Args evaluate error: No such file or directory ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM bluealsa ALSA lib pcm_dmix.c:990:(snd_pcm_dmix_open) The dmix plugin supports only playback stream ALSA lib pcm_dmix.c:990:(snd_pcm_dmix_open) The dmix plugin supports only playback stream ALSA lib pcm_dmix.c:990:(snd_pcm_dmix_open) The dmix plugin supports only playback stream connect(2) call to /tmp/jack-1001/default/jack_0 failed (err=No such file or directory) attempt to connect to server failed Hostapis: 2 Api 0 is ALSA Api 1 is OSS selecting device default device bcm2835 ALSA: - (hw:0,0) seems available as 0 device bcm2835 ALSA: IEC958/HDMI (hw:0,1) seems available as 1 device sysdefault seems available as 3 device dsp0 seems available as 4 device dmixer seems available as 5 device dmix seems available as 6 device default seems available as 7 Suggested size for outputbuffer = 1280 ofdm word gestart there might be a DAB signal here NPO Soul & Jazz (8206) is part of the ensemble NPO FunX Sl.Jamz (8217) is part of the ensemble NPO FunX (8209) is part of the ensemble NPO SterrenNL (8212) is part of the ensemble NPO Radio 4 (8204) is part of the ensemble NPO 3FM (8203) is part of the ensemble NPO Radio 5 (8205) is part of the ensemble NPO 3FM KX Radio (8214) is part of the ensemble NPO Radio 4 Con. (8215) is part of the ensemble ensemble NPO is (8001) recognized NPO Radio 1 (8201) is part of the ensemble NPO FunX Dance (8216) is part of the ensemble NPO 3FM Alterna. (8210) is part of the ensemble NPO Radio 2 (8202) is part of the ensemble

going to start program NPO Radio 2 selected NPO Radio 2 startaddress = 0 length = 72 subChId = 1 protection = 2 bitrate = 96 we have now DAB+

I don't know (yet) what ALSA complains about, but it just works!!!

@JvanKatwijk https://github.com/jvankatwijk "Uiteraard een grote DANKUWEL voor de library en het voorbeeld programma!".

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/JvanKatwijk/dab-cmdline/issues/12#issuecomment-336690998, or mute the thread https://github.com/notifications/unsubscribe-auth/AITzwN0nqV5VAPhBaZw5xj5JlhfKdDllks5ssa1IgaJpZM4N4q8p .

-- Jan van Katwijk

+31 (0)15 3698980 +31 (0) 628260355