Skip to content

Commit

Permalink
Merge pull request #3111 from Sigma1912/Sigma/fix-sim-config-stop-loo…
Browse files Browse the repository at this point in the history
…kahead

Fix sim config stop lookahead
  • Loading branch information
andypugh authored Sep 13, 2024
2 parents f7c11f5 + 3c08234 commit e6cf059
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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


0 comments on commit e6cf059

Please sign in to comment.