Mercurial > hg > beaglert
diff examples/measure_noisefloor/render.cpp @ 301:e4392164b458 prerelease
RENAMED BeagleRT to Bela AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA, scripts probably not working
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Fri, 27 May 2016 14:34:41 +0100 |
parents | dbeed520b014 |
children | 421a69d42943 |
line wrap: on
line diff
--- a/examples/measure_noisefloor/render.cpp Fri May 27 13:58:20 2016 +0100 +++ b/examples/measure_noisefloor/render.cpp Fri May 27 14:34:41 2016 +0100 @@ -6,7 +6,7 @@ */ -#include <BeagleRT.h> +#include <Bela.h> #include <Utilities.h> #include <cmath> @@ -32,7 +32,7 @@ // // Return true on success; returning false halts the program. -bool setup(BeagleRTContext *context, void *userData) +bool setup(BelaContext *context, void *userData) { // Clear the filter data structures for(int i = 0; i < 10; i++) { @@ -47,7 +47,7 @@ } } - gAnalysisTask = BeagleRT_createAuxiliaryTask(analyseResults, 50, "beaglert-analyse-results"); + gAnalysisTask = Bela_createAuxiliaryTask(analyseResults, 50, "beaglert-analyse-results"); return true; } @@ -57,7 +57,7 @@ // ADCs and DACs (if available). If only audio is available, numMatrixFrames // will be 0. -void render(BeagleRTContext *context, void *userData) +void render(BelaContext *context, void *userData) { bool bufferIsFull = false; // Whether at least one buffer has filled @@ -110,7 +110,7 @@ } } - BeagleRT_scheduleAuxiliaryTask(gAnalysisTask); + Bela_scheduleAuxiliaryTask(gAnalysisTask); } } @@ -154,7 +154,7 @@ // cleanup() is called once at the end, after the audio has stopped. // Release any resources that were allocated in setup(). -void cleanup(BeagleRTContext *context, void *userData) +void cleanup(BelaContext *context, void *userData) { for(int i = 0; i < 10; i++) { delete gBuffers0[i];