Skip to content

Commit

Permalink
Missing file in pack. Small correction for compute graph.
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Jan 20, 2023
1 parent de04777 commit 31d9d2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions ComputeGraph/cg/src/cg_status.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;


Expand Down
1 change: 1 addition & 0 deletions Scripts/git/gen_pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion cmsisdsp/cg/scheduler/templates/codeSwitch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 31d9d2e

Please sign in to comment.