X-Git-Url: http://git.jankratochvil.net/?p=mdsms.git;a=blobdiff_plain;f=setup.h;h=8e017930c9ba06b27cc6ecb23175aeec14aea8fe;hp=1d6fbec99f6a23e9af3d52d41a52cf4fd58de4b8;hb=refs%2Fheads%2Funlabeled-1.6.2;hpb=8a0e3cfa9a05fe85822d125161272a1da4645315 diff --git a/setup.h b/setup.h index 1d6fbec..8e01793 100644 --- a/setup.h +++ b/setup.h @@ -1,37 +1,23 @@ /* * $Id$ - * - * $Log$ - * Revision 1.5 1999/07/03 18:56:49 short - * Documentation fixes. - * - * Revision 1.4 1999/06/03 11:46:41 short - * Logging (--log) implemented. - * - * Revision 1.3 1999/06/03 10:52:32 short - * Commented all the entries in setup.h. - * - * Revision 1.2 1999/06/03 10:38:52 short - * Implemented remaining communication timeouts and maximum retry count. - * - * Revision 1.1.1.1 1999/05/26 13:06:26 short - * First alpha release. - * */ #define CONFIG_MAIN "/etc/" PACKAGE "rc" /* global configuration file */ #define CONFIG_HOME "/." PACKAGE "rc" /* user-local cfg file, $HOME is prepended automatically */ -#define DEF_DEVICE "/dev/mobildock" /* --device default */ +#define DEF_DEVICE "/dev/nokia9110" /* --device default */ #define DEF_LOGNAME "" /* --log default */ #ifndef DEF_LOCKFILE #define DEF_LOCKFILE "/var/lock/LCK..%s" /* --lockfile default */ #endif -#define DEF_MAXRETRY 10 /* --maxretry default */ -#define DEF_READTIME 60*60 /* --readtime default */ +#define DEF_BAUD 19200 /* --baud default */ +#define DEF_MAXRETRY 3 /* --maxretry default */ +#define DEF_READTIME 5 /* --readtime default */ #define DEF_CHARTIME 10 /* --chartime default (500ms per 80char=6.25ms recommended by Siemens */ #define DEF_CMDTIME 500 /* --cmdtime default */ +#define WORD_NET "net" /* load as network logo */ +#define WORD_GROUP "group" /* load as group graphics */ #define MAXCONFIG 4096 /* maximum allowed size of any configuration file */ #define MAXCFGARGS 256 /* maximum allowed number of arguments in cfg file */ #define MAXCFGLOOP 5 /* maximum number of recursive opens in cfg files */ @@ -44,11 +30,6 @@ this parameter taken in seconds */ #define ADDR_NAT 0x81 /* PDU address type for non-'+' numbers */ #define ADDR_INT 0x91 /* PDU address type for numbers prefixed by '+' */ -#define PDU_TYPE 0x11 /* first byte of PDU, SMS submit */ -#define PDU_MR 0x00 /* default message reference, filled by Siemens A1 */ -#define PDU_PID 0x00 /* PDU protocol identifier, SMS message type */ -#define PDU_DCS 0x00 /* PDU Data Coding Scheme, 7-bit class-2 message */ -#define PDU_VP 0xFF /* PDU Validity Period, maximum relative time */ #define MAXNUMLEN 20 /* maximum number of digits in GSM number */ #define MAXBODYLEN 160 /* maximum length of characters in SMS body */ #define BODYLOAD 200 /* number of bytes to read when body not on command line */