Dear forum!
I'm trying to compile and run a pd patch using the heavy library. It does compile and run with default block size, but has issues with dropped blocks. When I try to set a larger block size with the -c "-p 128" flag to the build_pd_hvcc.sh script I get the following:

couldn't create queue
Error: unable to initialise BelaContextFifo
Error: unable to initialise audio

Do you know its cause and what I could do to prevent or work around it?

What hardware and core code revision are you running this with? Is it possible that you have another instance of the program running ? Try rebooting the board to be sure.

  • Noia replied to this.

    giuliomoro I'm running a Bela Mini with multichannel expander, image v0.3.8h and a BelaPlatform pulled from the dev branch in the beginning of June. Is there anything I should consider updating?

    Try updating to the latest dev again, I won't have time to try it out till tomorrow at the earliest.

    Tested with an uptodate dev, after fixing an unrelated bug that had sneaked into the code ( std:st ring ) I'm back at the same place:

    Running /root/Bela/projects/PD-latt241114/PD-latt241114 -p 64
    couldn't create queue
    Error: unable to initialise BelaContextFifo
    Error: unable to initialise audio
    Makefile:615: recipe for target 'run' failed

    I can't reproduce on the same hardware and revision... Can you post your full Bela project (including the hvcc-generated file) somewhere ?

    And can you confirm how you are running it?

    ./build_pd_hvcc.sh ~/Dropbox/Typer/patchar/Typer -c "-p 64"

    Please show the result of running this on the board:

    grep detectlibraries /root/Bela/Makefile.libraries

    it says

    $(AT) resources/tools/detectlibraries.sh --library $(LIBRARY)

    Right, that indicates you are not actually running the latest dev. Can you try updating again please?

    I guess something goes wrong during the update process. Can you show the content of /root/update.log ?

    Yes, now, trying to update the board I ran into some errors:

    Updating files...Updated files: 0 ...done
    make: Entering directory '/root/Bela/resources/tools/bela-cape-btn'
    clang bela-cape-btn.c -o bela-cape-btn
    make: Leaving directory '/root/Bela/resources/tools/bela-cape-btn'
    make: Entering directory '/root/Bela/resources/tools/bela-extract-dependencies'
    clang++ "../../../core/MiscUtilities.cpp" -c -I../../../include -std=c++11 -o "build/MiscUtilities.o" -std=c++11
    ../../../core/MiscUtilities.cpp:242:14: error: use of undeclared identifier 'PATH_MAX'
    char result[PATH_MAX];
    ^
    ../../../core/MiscUtilities.cpp:243:53: error: use of undeclared identifier 'PATH_MAX'
    ssize_t count = readlink("/proc/self/exe", result, PATH_MAX);
    ^
    2 errors generated.
    Makefile:23: recipe for target 'build/MiscUtilities.o' failed
    make: *** [build/MiscUtilities.o] Error 1
    make: Leaving directory '/root/Bela/resources/tools/bela-extract-dependencies'

    An error occurred.

    Here is the update.log

    update.txt
    46kB

    Try the latest dev branch, that should work?

    • Noia replied to this.

      giuliomoro Thanks a lot! Now it works! Board updated clean and hvcc build script runs with different blocksizes.
      (unfortunately it didn't prevent the underruns, even with blocksize set to 1024, so I must go untangle my own code elsewhere)