Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sim config stop lookahead #3111

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configs/sim/axis/remap/stop-lookahead/demo.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ py = python3
PARAMETER_FILE = sim.var
SUBROUTINE_PATH = nc_subroutines:../../nc_files/remap_lib/common_nc_subs
LOG_LEVEL = 0
REMAP= G70 modalgroup=1 py=queuebuster
REMAP= G13 modalgroup=1 py=queuebuster

# this is important - read nc_subroutines/on_abort.ngc
ON_ABORT_COMMAND= O <on_abort> call
Expand Down
12 changes: 6 additions & 6 deletions configs/sim/axis/remap/stop-lookahead/nc_files/examples.ngc
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
;
; demo for stopping interpreter readahead
;
; assuming the G70 line is commented out, what would happen is:
; assuming the G13 line is commented out, what would happen is:
;
; the interpreter parses and queues the msg commands, then encounters abort
; and immediately flushes the interpreter queue
; consequence: the message from (msg,xx) dont appear since they are flushed before they can be executed by
; task and the gui.
;
; if G70 is active, this means interpreter readahead stops at that very line until all preceding
; if G13 is active, this means interpreter readahead stops at that very line until all preceding
; commands have been executed
; hence the messages appear in that case

(msg,one)
(msg,two)
(msg,three)

G70 (dont lookahead further)

(abort, aborting)
G13 (dont lookahead further)
o10 if [#<_task> EQ 1] (this avoids an abort message when starting the config)
(abort, aborting)
o10 endif
m2


Loading