this is not supported at the moment, but I have a sense you are a pretty experienced user, so you should be able to follow these instructions:
edit the file /opt/Bela/bela_startup.sh on the board.
This loop is what calls each project matching the loop_* pattern:
for PROJECT in "$BELA_HOME"/projects/loop_*; do
echo Running $PROJECT;
/usr/bin/make -C /root/Bela PROJECT=`basename "${PROJECT}"` CL="${ARGS}" runonly
done
the ARGS variable contains the command-line values that are passed to the project. When selecting loop_*, this is empty. Inside the loop, you could overwrite it for the desired project. Something like this should do, if you replace MYPROJECT with the name of the project that needs a blocksize of 32.
for PROJECT in "$BELA_HOME"/projects/loop_*; do
echo Running $PROJECT;
ARGS=
if [ "$PROJECT" == "MYPROJECT" ]; then
ARGS="-p32"
fi
/usr/bin/make -C /root/Bela PROJECT=`basename "${PROJECT}"` CL="${ARGS}" runonly
done