Missing file in pack. Small correction for compute graph.

pull/94/head v1.14.3
Christophe Favergeon 3 years ago
parent de04777329
commit 766496c4b5

@ -10,6 +10,7 @@
CG_INIT_FAILURE = -4, /**< Node initialization failure */
CG_SKIP_EXECUTION = -5, /**< Skip node execution (asynchronous mode) */
CG_BUFFER_ERROR = -6, /**< Stop execution due to FIFO overflow or underflow (asynchronous mode for pure function) */
CG_OS_ERROR = -7 /**< RTOS API error */
} cg_status;

@ -111,6 +111,7 @@ PACK_DIRS="
PACK_BASE_FILES="
LICENSE.txt
ComputeGraph/cg/src/GenericNodes.h
ComputeGraph/cg/src/cg_status.h
ComputeGraph/cg/nodes/cpp/CFFT.h
ComputeGraph/cg/nodes/cpp/ICFFT.h
ComputeGraph/cg/nodes/cpp/InterleavedStereoToMono.h

@ -55,7 +55,10 @@ static unsigned int schedule[{{schedLen}}]=
}
if (cgStaticError == CG_SKIP_EXECUTION_ID_CODE)
continue;
{
cgStaticError = 0;
continue;
}
{% if config.eventRecorder -%}
if (cgStaticError<0)

Loading…
Cancel
Save