/* Generated with CMSIS-DSP Compute Graph Scripts. The generated code is not covered by CMSIS-DSP license. The support classes and code is covered by CMSIS-DSP license. */ #include "arm_math.h" #include "custom.h" #include "GenericNodes.h" #include "AppNodes.h" #include "scheduler.h" /* Description of the scheduling. It is a list of nodes to call. The values are indexes in the previous array. */ static unsigned int schedule[17]= { 4,0,1,2,3,3,4,0,1,2,3,3,0,1,2,3,3, }; /*********** FIFO buffers ************/ #define FIFOSIZE0 256 #define FIFOSIZE1 256 #define FIFOSIZE2 13 #define FIFOSIZE3 26 #define BUFFERSIZE0 256 float32_t buf0[BUFFERSIZE0]={0}; #define BUFFERSIZE1 256 float32_t buf1[BUFFERSIZE1]={0}; #define BUFFERSIZE2 13 float32_t buf2[BUFFERSIZE2]={0}; #define BUFFERSIZE3 26 float32_t buf3[BUFFERSIZE3]={0}; uint32_t scheduler(int *error,arm_mfcc_instance_f32 *mfccConfig) { int cgStaticError=0; uint32_t nbSchedule=0; int32_t debugCounter=1; /* Create FIFOs objects */ FIFO fifo0(buf0); FIFO fifo1(buf1); FIFO fifo2(buf2); FIFO fifo3(buf3); /* Create node objects */ SlidingBuffer audioWin(fifo0,fifo1); MFCC mfcc(fifo1,fifo2,mfccConfig); SlidingBuffer mfccWin(fifo2,fifo3); FileSink sink(fifo3,"output_example6.txt"); FileSource src(fifo0,"input_example6.txt"); /* Run several schedule iterations */ while((cgStaticError==0) && (debugCounter > 0)) { /* Run a schedule iteration */ for(unsigned long id=0 ; id < 17; id++) { switch(schedule[id]) { case 0: { cgStaticError = audioWin.run(); CHECKERROR; } break; case 1: { cgStaticError = mfcc.run(); CHECKERROR; } break; case 2: { cgStaticError = mfccWin.run(); CHECKERROR; } break; case 3: { cgStaticError = sink.run(); CHECKERROR; } break; case 4: { cgStaticError = src.run(); CHECKERROR; } break; default: break; } } debugCounter--; nbSchedule++; } errorHandling: *error=cgStaticError; return(nbSchedule); }