aboutsummaryrefslogtreecommitdiffstats
path: root/src/pocsag/main.c
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2024-04-01 21:52:36 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2024-04-01 21:52:36 +0200
commita2ea0339e53506562a464f8e17c25359a6fe117a (patch)
treeb0ac0b7dbd0e407aacb5813318f4e0b9f23baa3b /src/pocsag/main.c
parentb8b250bd0aed1e06eb18da911d5f7be1b8049002 (diff)
pocsag: Allow dialing function digit A..D (numeric, tone 1, tone 2, alpha)
Diffstat (limited to 'src/pocsag/main.c')
-rw-r--r--src/pocsag/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pocsag/main.c b/src/pocsag/main.c
index 237da77..3546707 100644
--- a/src/pocsag/main.c
+++ b/src/pocsag/main.c
@@ -244,7 +244,7 @@ int msg_receive(const char *text)
static const struct number_lengths number_lengths[] = {
{ 7, "RIC with default function" },
- { 8, "RIC with function (append 0..3)" },
+ { 8, "RIC with function (append 0..3 or A..D)" },
{ 0, NULL }
};
@@ -262,7 +262,7 @@ int main(int argc, char *argv[])
init_besetzton();
/* init mobile interface */
- main_mobile_init("0123456789", number_lengths, NULL, pocsag_number_valid);
+ main_mobile_init("0123456789ABCD", number_lengths, NULL, pocsag_number_valid);
/* handle options / config file */
add_options();