µracoli Manual  Version foo
sterm - A Scriptable Terminal
  • Author: Axel Wachtler
  • Date: 2010/07 - 2015/03

Abstract

While developping and debugging wireless applications, it is usefull to connect two or more nodes via a serial interface with a PC in order to watch and analyze the debugging output. The programm sterm.py is (yet another) terminal application written in Python/TKinter, that provides this multiport feature.

Prerequisites

In order to run sterm.py an installed version of http://www.python.orgPython and the module pyserial is needed. A short decription how to install and upgrade Python on your PC can be found under http://uracoli.nongnu.org/gettingstarted.html#_installing_and_upgrading_python[Installing and Upgrading Python]. If you will use a transceiver board with an USB interface, of course the correct USB driver must be loaded.

Running sterm.py

The program wuart/sterm.py is simply started by the command:

python sterm.py

If the configuration file sterm.cfg is not found in the current directory, a default version of this file is created and must be modified, to reflect your configuration.

With the command python sterm.py -h a list of available command line options is displayed.

Usage:
 python sterm.py [OPTIONS]

Options:
 -h, --help
    show this help message
 -v, --version
    show version number
 -c FILE, --config FILE
    load config file, default value `sterm.cfg`
    if FILE is not existing, an annotated version
    is generated and the tool is exited.

Configuring sterm.py

Overview

The setup is configured with the file sterm.cfg. This file is written in WIN.INI format and consists of the following sections.

[sterm.py]:: The section name "CONFIG" is reserved for the global configuration of sterm.py. [mydevice]:: A device section defines the serial port settings and other configuration parameters. It can have a arbitary but unique (within sterm.cfg) name. [mymacro]:: A macros section defines either a text or a smart macro. It can have a arbitary but unique (within sterm.cfg) name.

The [sterm.py] Section

The CONFIG section holds the global configuration information.

[sterm.py]
devices = .... list of enabled devices
plugins = .... list of files with smart macro functions
macros  = .... macros enable globally for all devices

The [Device] Section

The example file sterm.cfg defines three devices: coord, dev1, dev2, dev3. Each devices is described within a configuration section, which has the following contents:

[coord]
type = serial
port = /dev/ttyS4
baudrate = 9600
logname = coord.log
logmode = w
echo = 1
log = 1
connect = 1
macros = mycommand_01 mycommand_02

The entries have the following meaning:

  • type: currently only value "serial" is usefull.
  • port: the name of the serial port, under Windows probably COMx
  • baudrate: the serial baudrate to be used (in bit/s, e.g. 9600, 19200, 57600)
  • logname: name of the generated logfile
  • logmode: "a" for append to the file or "w" to write file from start
  • log: a 1 means that writing to the logfile is enabled right at startup, a 0 means that you need to click the "log" button to open the logfile.
  • echo: 1 local terminal echo is enabled at startup
  • connect: 1 means that the serial connection is opened at programm startup
  • macros: list of macros for this device.

After defining a device, it needs to be listed in the "[CONFIG]" section in the keyword "devices", e.g.

[sterm.py]
devices = coord dev1 dev2 dev3
....

The [Macro] Section

The program sterm.py provides two types of macros: a) normal text macros and b) smart macros, which are implemented by python functions.

Here are two examples for a text macros:

[qbf]
text = The quick brown fox jumps over the lazy dog.

[peli]
text = A wonderful bird is the pelican,
        His bill will hold more than his belican,
        He can take in his beak
        Enough food for a week
        But I'm damned if I see how the helican!

The "qbf" macro sends a single line to the serial device and the "peli" macro sends multiple lines to the serial device.

Smart macros are configured by the keywords "function" and "params". The "function" keyword holds the name of a function that is defined in a plugin file. The "params" keyword is a python expression that creates a parameter dictionary the function is called with.

[mycommand_01]
function = mycommand
params = dict(nbdevices = 1, channel = 0, chanpg=5, test=3)

Assigning Macros

The macros are buried behind the button "Macros" as a drop down list. The macro assignement can be global in the "[CONFIG]" section or local in the "[mydevice]" device specification section.

Here are two assignment examples:

[sterm.py]
devices = coord dev1 dev2 dev3
plugins = plugin.py
macros = qbf

[mydevice]
type = serial
....
macros = mycommand_01

The macro "qbf" is assigned globally to all defined devices, where the macro "mycommand_01" is just assinged to the device "mydevice".

Using Smart Macros

Writing Smart Macros

Smart Macros are implemented by a python function. Here is an example:

1 import time
2 def mycommand(devices, nbdevices, test, channel, chanpg, pan = 1):
3  print "test=%d, channel=%d, chanpg=%d, test=%d, pan=%d" % \
4  (test, channel, chanpg, test, pan)
5  cmd = "%02d%02d%1d%02d" % (channel, chanpg, pan, test)
6  print "Run: %s" % cmd
7  devices['coord'].write("Sc%s" % cmd)
8  if nbdevices >=1:
9  time.sleep(1)
10  devices['dev1'].write("S1%s" % cmd)
11  if nbdevices >=2:
12  time.sleep(1)
13  devices['dev2'].write("S2%s" % cmd)
14  if nbdevices >=3:
15  time.sleep(1)
16  devices['dev3'].write("S3%s" % cmd)

The first parameter "devices" of the function mycommand() holds a dictionary of all defined serial devices. By means of the device function "write" the smart macro function can send data to all available devices. All other parameters (e.g. nbdevices, test, channel, chanpg, pan = 1) are function specific and given by the params keyword in the configuration file.

Loading Smart Macros

Smart macros are loaded in the "[sterm.py]" section of the config file just by writing the file name (with a path component) behind the keywords "plugins".

[sterm.py]
...
plugins = plugin.py
...