-
Notifications
You must be signed in to change notification settings - Fork 0
/
ax25c.xml
119 lines (108 loc) · 3.41 KB
/
ax25c.xml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Project: ax25c - File: ax25c.xsd
* Copyright (C) 2019 - Tania Hagn - tania@df9ry.de
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<Configuration name="Default"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://df9ry.ampr.org/ax25c ax25c.xsd"
xmlns="http://df9ry.ampr.org/ax25c">
<Settings>
<!-- Timer tick in ms -->
<Setting name="tick">20</Setting>
</Settings>
<Plugins>
<!--
The simple memory manager uses the OS malloc and free functions
without any buffering.
-->
<Plugin name="MemoryManager" file="ax25c_mm_simple.so">
</Plugin>
<!--
Terminal implements a simple command line interface.
-->
<Plugin name="Terminal" file="ax25c_terminal.so">
<Settings>
<!-- Name of ServiceAccessPoint to use -->
<Setting name="peer">AX25</Setting>
<!-- Max. length of a line -->
<Setting name="line_length">132</Setting>
<!-- Max. length of a monitor line -->
<Setting name="mon_length">132</Setting>
<!-- Buffer sizes -->
<Setting name="mon_size">1024</Setting>
<!-- Local address -->
<Setting name="loc_addr">DF9RY-1</Setting>
<!-- Remote address -->
<Setting name="rem_addr">DB0FHN</Setting>
<!-- Lead ins -->
<Setting name="lead_txt">\033[47;30m</Setting>
<Setting name="lead_cmd">\033[42;30m</Setting>
<Setting name="lead_inf">\033[44;37m</Setting>
<Setting name="lead_err">\033[41;37m</Setting>
<Setting name="lead_mon">\033[40;37m</Setting>
<Setting name="prompt">Command:> </Setting>
</Settings>
</Plugin>
<!--
AX25 V2.2 state machine.
-->
<Plugin name="AX25" file="ax25v2_2.so">
<Settings>
<Setting name="peer">AXUDP-1</Setting>
<Setting name="n_sessions">1</Setting>
</Settings>
</Plugin>
<!--
AX25 TNOS state machine.
-->
<Plugin name="TNOS" file="axtnos.so">
<Settings>
<Setting name="peer">AXUDP-1</Setting>
<Setting name="n_sessions">16</Setting>
</Settings>
</Plugin>
<!--
AXUDP Uplink.
-->
<Plugin name="AXUDP" file="ax25c_udp.so">
<Instances>
<Instance name="AXUDP-1">
<Settings>
<Setting name="host">db0fhn.ampr.org</Setting>
<Setting name="port">93</Setting>
<Setting name="mode">client</Setting>
<Setting name="ip_version">ip_v4</Setting>
<Setting name="rx_buf_size">1024</Setting>
</Settings>
</Instance>
</Instances>
</Plugin>
<!--
Hostmode server.
-->
<Plugin name="HOSTMODESERVER" file="hostmodeserver.so">
<Instances>
<Instance name="HOSTMODE-1">
<Settings>
<Setting name="comport">COM4</Setting>
<Setting name="baudrate">9600</Setting>
<Setting name="channels">8</Setting>
</Settings>
</Instance>
</Instances>
</Plugin>
</Plugins>
</Configuration>