Weiter Zurück Inhalt

6. Konfigurations script makepad

Der Batch (shell-script) makepad startet das Programm datus.c mehrmals hintereinander. Bei jedem Start wird ein .cmd File an das PAD geschickt. Das Script makepad finden Sie hier:

#! /bin/bash
#
# Copyright (C) 2000 Heimo Schön <heimo.schoen@gmx.at>
#
# 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, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
#

export makepaderror=0

if [ $1 ] ; then
  if [ -e /dev/$1 ] ; then
    echo Send DATUS config to device /dev/$1
    export DATDEV=/dev/$1
    if [ $2 ] ; then
      if [ $2 = "ppxx" ] ; then
        datus profile.cmd       $DATDEV  $1_profile.log
        datus system_ppxx.cmd   $DATDEV  $1_system_ppxx.log
        datus pad_12.cmd        $DATDEV  $1_pad_12.log
        datus x25_34.cmd        $DATDEV  $1_x25_34.log
      else
        if [ $2 = "xppx" ] ; then
          datus profile.cmd       $DATDEV  $1_profile.log
          datus system_xppx.cmd   $DATDEV  $1_system_xppx.log
          datus pad_23.cmd        $DATDEV  $1_pad_23.log
          datus x25_14.cmd        $DATDEV  $1_x25_14.log
        else
          echo wrong parameter 2
          echo Please give in parameter 2 the Datus lines
          echo "    ppxx ... for pad pad x25 x25 devices"
          echo "    xppx ... for x25 pad pad x25 devices"
          echo "    example : $0 tty0 ppxx"
          export makepaderror=1
        fi;
      fi;
    else
      echo missing parameter 2
      echo Please give in parameter 2 the Datus lines
      echo "    ppxx ... for pad pad x25 x25 devices"
      echo "    xppx ... for x25 pad pad x25 devices"
      echo "    example : $0 tty0 ppxx"
      export makepaderror=1
    fi;
  else
    echo Could not find device /dev/$1
    export makepaderror=1
  fi;
else
  echo Please give in parameter 1 the device 
  echo "       example: $0 tty0 ppxx"
  export makepaderror=1
fi;

if [ $makepaderror = "0" ] ; then
  echo config done.
  echo 
  echo ">>> Read File NACHARBEITEN for commands you have"
  echo ">>> todo with minicom-shell !!!!!!!!!!!!!!!!!!!!"
  echo 
fi;
  

Das Script makepad verlangt zwei Parameter. Der erste Parameter gibt das Device an, an dem das Datus-PAD angeschlossen ist. Dabei muß nur noch der Devicename hinter /dev/ angegeben werden. Wenn Sie das PAD an der Schnittstelle /dev/ttyW7 angeschlossen haben, dann geben Sie als Parameter ttyW7 an.

Der zweite Parameter des Scripts kann ppxx oder xppx sein. Je nachdem wie die Schnittstellen (Links) des PADs belegt sind:

Geben Sie xppx als Parameter an, wenn Ihre Datus-Schnittstellen wie folgt belegt sind:

    Link 1:    X25  X.21 
    Link 2:    Pad  V.24 
    Link 3:    Pad  V.24 
    Link 4:    X25  X.21
  

Geben Sie ppxx als Parameter an, wenn Ihre Datus-Schnittstellen wie folgt belegt sind:

    Link 1:    Pad  V.24 
    Link 2:    Pad  V.24 
    Link 3:    X25  X.21 
    Link 4:    X25  X.21
  

Ein makepad Start könnte wie folgt aussehen:

makepad ttyW7 xppx 
  


Weiter Zurück Inhalt