Skip to content

Commit 31d9d2e

Browse files
Missing file in pack. Small correction for compute graph.
1 parent de04777 commit 31d9d2e

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

ComputeGraph/cg/src/cg_status.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
CG_INIT_FAILURE = -4, /**< Node initialization failure */
1111
CG_SKIP_EXECUTION = -5, /**< Skip node execution (asynchronous mode) */
1212
CG_BUFFER_ERROR = -6, /**< Stop execution due to FIFO overflow or underflow (asynchronous mode for pure function) */
13+
CG_OS_ERROR = -7 /**< RTOS API error */
1314
} cg_status;
1415

1516

Scripts/git/gen_pack.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ PACK_DIRS="
111111
PACK_BASE_FILES="
112112
LICENSE.txt
113113
ComputeGraph/cg/src/GenericNodes.h
114+
ComputeGraph/cg/src/cg_status.h
114115
ComputeGraph/cg/nodes/cpp/CFFT.h
115116
ComputeGraph/cg/nodes/cpp/ICFFT.h
116117
ComputeGraph/cg/nodes/cpp/InterleavedStereoToMono.h

cmsisdsp/cg/scheduler/templates/codeSwitch.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ static unsigned int schedule[{{schedLen}}]=
5555
}
5656

5757
if (cgStaticError == CG_SKIP_EXECUTION_ID_CODE)
58-
continue;
58+
{
59+
cgStaticError = 0;
60+
continue;
61+
}
5962

6063
{% if config.eventRecorder -%}
6164
if (cgStaticError<0)

0 commit comments

Comments
 (0)