Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
kazoo
Commits
ae0675cc
Commit
ae0675cc
authored
Aug 05, 2019
by
Maxime Perrotin
Browse files
Add interpartition call
parent
10547394
Changes
2
Hide whitespace changes
Inline
Side-by-side
test/test-air-interpartcomm/input_data/hello.c
View file @
ae0675cc
...
...
@@ -11,6 +11,6 @@ void hello_startup()
void
hello_PI_s
(
const
asn1SccTASTE_Boolean
*
IN_t
)
{
/* Write your code here! */
printf
(
"hello.c
printf here
"
);
printf
(
"hello.c
got async message with value %s"
,
*
IN_t
?
"TRUE"
:
"FALSE
"
);
}
test/test-air-interpartcomm/input_data/read.c
View file @
ae0675cc
...
...
@@ -10,7 +10,10 @@ void read_startup()
void
read_PI_h
()
{
static
asn1SccT_Boolean
someBool
=
true
;
/* Write your code here! */
printf
(
"executing partition defined by TASTE
\n
"
);
read_RI_s
(
&
someBool
);
someBool
=
someBool
?
false
:
true
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment