Hi all. 

This little note to explain how tfwin32 set some parameters. TxDelay, Persist,
Slottime.... is not supported by tfwin32, because it use a different sintax.
So, if you use for example the command AX25 TXDELAY 40 in your tsthwin to set
txdelay parameters, it will not be set.... also, interrogating the parameters,
report you a wrong number.

The above commands, and others here explained, are managed by tfwin32 using
the DRSI standard, that is different from wa8ded host language, so you cannot
use, for these parameters, the equivalent AX25 commands. 
You may set them using the PARAM 0 COMMAND function.

Command, in case of tfwin32, is a P characters follow by one or more numerics
values: PARAM 0 P0 1 2 3 4 5 6 7

P0 means the [port 0] declared in tfwin.ini, P1 for [port 1], and so on.
1 2 3 4 5 means the value to assign sequentially to the interface:


p1 (1)		0/1/2		Repeater disabled/enabled/cross-port
p2 (64)		0-255		P-persistence value
p3 (10)		0-127		Slot time interval (10ms)
p4 (4)		1-15		Frame acknowledge (seconds)
p5 (4)		1-7		Number of outstanding I frames
p6 (10)		0-127		Number of tries (0=forever)
p7 (100)	0-65535		Timer T2 interval (10ms)
p8 (18000)	0-65535		Timer T3 interval (10ms)
p9 (30)		0-127		Transmitter delay (10ms)
p10 (2)		0-7		HDLC baud rate

For example, to set on [port 0] block REPEATER ENABLE, you must issue:
PARAM 0 P0 1

To set on block [part 1] REPEATER ENABLE and PERSISTANCE value of 128:
PARAM 0 P1 1 128

You may also set directly a value ignoring the previus field, using an * sign.
To set SLOTTIME on port 0 to 20 without touch the previusly fields, you may
use PARAM 0 P0 * * 20

To iterrogate the driver about the current set ov value for a block, use the
PARAM 0 Px without parameters. For example, to query about parameters on 
port 0, use PARAM 0 P0

73, Mario IK1GKJ
