summaryrefslogtreecommitdiff
path: root/configs/sim/axis/ini_hal_pins.tcl
blob: f3d1e478f3ab58b1b87a39d083fe830731e310a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/tclsh

#-----------------------------------------------------------------------
# Copyright: 2013,2014
# Author:    Dewey Garrett <dgarrett@panix.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#-----------------------------------------------------------------------

# pass 1: set environmental variable as flag
#         then restart this script in background
#         exit
# pass 2: delay then start sim_pin

set delay_ms 3000
set pins [list \
             ini.traj_default_velocity \
             ini.traj_default_acceleration \
             ini.traj_max_velocity \
             ini.traj_max_acceleration \
             ini.0.max_velocity \
             ini.0.max_acceleration \
             ini.0.min_limit \
             ini.0.max_limit \
             ini.0.backlash \
             ini.0.ferror \
             ini.0.min_ferror \
         ]

proc show_all {} {
  package require Hal
  puts "ini hal pins:"
  puts [hal show pin ini]
} ;# show_all

if ![info exists ::env(ini_hal_pins)] {
  set ::env(ini_hal_pins) $::argv
  exec ./ini_hal_pins.tcl & ;# restart this script with env(ini_hal_pins) set
  exit 0
} else {
  after $delay_ms
  show_all
  if [catch {
    eval exec sim_pin $pins &
  } msg ] {
    puts "$::argv0: sim_pin failed:"
    puts "  $msg"
  }
  exit 0
}