Skip to content

Commit

Permalink
sims: fix startup issues in axis sims
Browse files Browse the repository at this point in the history
this only fixes errors that prevent starting the config, not any underlying ui or config issues
  • Loading branch information
phillc54 committed Feb 13, 2023
1 parent 052bbd9 commit c2a8b67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/profile_axis
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
SCRIPT_LOCATION=$(dirname $(readlink -f $0))
python -mcProfile -o axis.profile $SCRIPT_LOCATION/axis "$@"
(echo sort cumulative; echo stats 20) | python -mpstats axis.profile
python3 -mcProfile -o axis.profile $SCRIPT_LOCATION/axis "$@"
(echo sort cumulative; echo stats 20) | python3 -mpstats axis.profile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DEBUG = 0

[DISPLAY]
DISPLAY = axis
GLADEVCP= -c gladevcp -u python/gladevcp-handler.py manualtoolchange.glade
GLADEVCP= -c gladevcp -u python/gladevcp-handler.py manualtoolchange.ui
OPEN_FILE= ./nc_files/tcdemo.ngc
CYCLE_TIME = 0.100
HELP_FILE = doc/help.txt
Expand Down
2 changes: 1 addition & 1 deletion configs/sim/axis/remap/rack-toolchange/racktoolchange.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DEBUG = 0

[DISPLAY]
DISPLAY = axis
GLADEVCP= -c gladevcp racktoolchange.glade
GLADEVCP= -c gladevcp racktoolchange.ui
OPEN_FILE= ./nc_files/tcdemo.ngc
CYCLE_TIME = 0.100
HELP_FILE = doc/help.txt
Expand Down

0 comments on commit c2a8b67

Please sign in to comment.