Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
62a1277f
Commit
62a1277f
authored
Jul 11, 2016
by
Maxime Perrotin
Browse files
Fix Ada generator when using simulation mode
parent
d2f03721
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
62a1277f
...
...
@@ -142,6 +142,9 @@ The background pattern was downloaded from www.subtlepatterns.com
Changelog
=========
1.
4.5 (07/2016)
-
Code generation fix for the simulator
1.
4.4 (06/2016)
-
Minor bugfix in Ada backend to support typeless systems
...
...
opengeode/AdaGenerator.py
View file @
62a1277f
...
...
@@ -772,7 +772,7 @@ package {process_name} is'''.format(process_name=process_name,
# XXX add to C backend
if
process
.
cs_mapping
:
taste_template
.
append
(
'-- Process continuous signals'
)
taste_template
.
append
(
'if
ctxt
.initDone then'
)
taste_template
.
append
(
'if
{}
.initDone then'
.
format
(
LPREFIX
)
)
taste_template
.
append
(
"Check_Queue(msgPending'access);"
)
taste_template
.
append
(
'end if;'
)
ads_template
.
append
(
...
...
opengeode/opengeode.py
View file @
62a1277f
...
...
@@ -134,7 +134,7 @@ except ImportError:
__all__
=
[
'opengeode'
,
'SDL_Scene'
,
'SDL_View'
,
'parse'
]
__version__
=
'1.4.
4
'
__version__
=
'1.4.
5
'
if
hasattr
(
sys
,
'frozen'
):
# Detect if we are running on Windows (py2exe-generated)
...
...
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