mirror of
https://agent.ghink.cloud/wb2osz/direwolf
synced 2025-04-08 15:48:35 +00:00
new file: A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf new file: A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf modified: APRStt-Implementation-Notes.pdf modified: CHANGES.txt new file: Makefile modified: Makefile.linux modified: Makefile.win deleted: Quick-Start-Guide-Windows.pdf modified: Raspberry-Pi-APRS-Tracker.pdf modified: Raspberry-Pi-APRS.pdf modified: User-Guide.pdf modified: aclients.c modified: aprs_tt.c modified: aprs_tt.h modified: atest.c modified: audio.c modified: audio.h modified: audio_win.c modified: ax25_pad.c modified: ax25_pad.h modified: beacon.c modified: beacon.h modified: config.c modified: config.h modified: decode_aprs.c modified: decode_aprs.h modified: demod.c modified: demod.h modified: demod_9600.c modified: demod_9600.h modified: demod_afsk.c modified: digipeater.c modified: digipeater.h modified: direwolf.c modified: direwolf.conf deleted: direwolf.desktop modified: direwolf.h new file: direwolf.spec new file: direwolf.txt new file: dlq.c new file: dlq.h modified: dsp.c new file: dtime_now.c new file: dtime_now.h modified: dtmf.c modified: dtmf.h new file: dwespeak.bat new file: dwespeak.sh modified: fsk_demod_state.h modified: gen_packets.c modified: gen_tone.c new file: geotranz/README-FIRST.txt new file: geotranz/error_string.c new file: geotranz/error_string.h new file: geotranz/mgrs.c new file: geotranz/mgrs.h new file: geotranz/polarst.c new file: geotranz/polarst.h new file: geotranz/readme.txt new file: geotranz/releasenotes.txt new file: geotranz/tranmerc.c new file: geotranz/tranmerc.h new file: geotranz/ups.c new file: geotranz/ups.h new file: geotranz/usng.c new file: geotranz/usng.h new file: geotranz/utm.c new file: geotranz/utm.h modified: hdlc_rec.c modified: hdlc_rec.h modified: hdlc_rec2.c modified: hdlc_rec2.h modified: hdlc_send.c modified: igate.c modified: igate.h modified: kiss_frame.c modified: kiss_frame.h modified: kissnet.c modified: latlong.c modified: latlong.h modified: ll2utm.c modified: log.c modified: log.h new file: man1/aclients.1 new file: man1/atest.1 new file: man1/decode_aprs.1 new file: man1/direwolf.1 new file: man1/gen_packets.1 new file: man1/ll2utm.1 new file: man1/log2gpx.1 new file: man1/text2tt.1 new file: man1/tt2text.1 new file: man1/utm2ll.1 modified: multi_modem.c modified: multi_modem.h new file: pfilter.c new file: pfilter.h modified: ptt.c modified: ptt.h deleted: pttest.c modified: rdq.c new file: recv.c new file: recv.h modified: redecode.c modified: redecode.h modified: rrbb.c modified: rrbb.h modified: server.c modified: server.h modified: telemetry.c modified: telemetry.h modified: textcolor.c modified: textcolor.h modified: tocalls.txt modified: tq.c modified: tq.h modified: tt_text.c modified: tt_text.h modified: tt_user.c modified: tt_user.h new file: ttcalc.c deleted: udp_test.c deleted: utm/LatLong-UTMconversion.c deleted: utm/LatLong-UTMconversion.h deleted: utm/README.txt deleted: utm/SwissGrid.cpp deleted: utm/UTMConversions.cpp deleted: utm/constants.h modified: utm2ll.c modified: version.h new file: xid.c modified: xmit.c modified: xmit.h
120 lines
3.2 KiB
C
120 lines
3.2 KiB
C
|
|
/* aprs_tt.h */
|
|
|
|
#ifndef APRS_TT_H
|
|
#define APRS_TT_H 1
|
|
|
|
|
|
/*
|
|
* For holding location format specifications from config file.
|
|
* Same thing is also useful for macro definitions.
|
|
* We have exactly the same situation of looking for a pattern
|
|
* match and extracting fixed size groups of digits.
|
|
*/
|
|
|
|
struct ttloc_s {
|
|
enum { TTLOC_POINT, TTLOC_VECTOR, TTLOC_GRID, TTLOC_UTM, TTLOC_MGRS, TTLOC_USNG, TTLOC_MACRO, TTLOC_SATSQ } type;
|
|
|
|
char pattern[20]; /* e.g. B998, B5bbbdddd, B2xxyy, Byyyxxx, BAxxxx */
|
|
/* For macros, it should be all fixed digits, */
|
|
/* and the letters x, y, z. e.g. 911, xxyyyz */
|
|
|
|
union {
|
|
|
|
struct {
|
|
double lat; /* Specific locations. */
|
|
double lon;
|
|
} point;
|
|
|
|
struct {
|
|
double lat; /* For bearing/direction. */
|
|
double lon;
|
|
double scale; /* conversion to meters */
|
|
} vector;
|
|
|
|
struct {
|
|
double lat0; /* yyy all zeros. */
|
|
double lon0; /* xxx */
|
|
double lat9; /* yyy all nines. */
|
|
double lon9; /* xxx */
|
|
} grid;
|
|
|
|
struct {
|
|
double scale;
|
|
double x_offset;
|
|
double y_offset;
|
|
long lzone; /* UTM zone, should be 1-60 */
|
|
char hemi; /* UTM Hemisphere, should be 'N' or 'S'. */
|
|
} utm;
|
|
|
|
struct {
|
|
char zone[8]; /* Zone and square for USNG/MGRS */
|
|
} mgrs;
|
|
|
|
struct {
|
|
char *definition;
|
|
} macro;
|
|
};
|
|
};
|
|
|
|
/*
|
|
* Configuration options for APRStt.
|
|
*/
|
|
|
|
#define TT_MAX_XMITS 10
|
|
|
|
struct tt_config_s {
|
|
|
|
int gateway_enabled; /* Send DTMF sequences to APRStt gateway. */
|
|
|
|
int obj_recv_chan; /* Channel to listen for tones. */
|
|
|
|
int obj_xmit_chan; /* Channel to transmit object report. */
|
|
|
|
char obj_xmit_via[AX25_MAX_REPEATERS * (AX25_MAX_ADDR_LEN+1)];
|
|
/* e.g. empty or "WIDE2-1,WIDE1-1" */
|
|
|
|
int retain_time; /* Seconds to keep information about a user. */
|
|
int num_xmits; /* Number of times to transmit object report. */
|
|
int xmit_delay[TT_MAX_XMITS]; /* Delay between them. */
|
|
|
|
struct ttloc_s *ttloc_ptr; /* Pointer to variable length array of above. */
|
|
int ttloc_size; /* Number of elements allocated. */
|
|
int ttloc_len; /* Number of elements actually used. */
|
|
|
|
double corral_lat; /* The "corral" for unknown locations. */
|
|
double corral_lon;
|
|
double corral_offset;
|
|
int corral_ambiguity;
|
|
};
|
|
|
|
|
|
|
|
|
|
void aprs_tt_init (struct tt_config_s *p_config);
|
|
|
|
void aprs_tt_button (int chan, char button);
|
|
|
|
/* Error codes for sending responses to user. */
|
|
|
|
#define TT_ERROR_D_MSG 1 /* D was first char of field. Not implemented yet. */
|
|
#define TT_ERROR_INTERNAL 2 /* Internal error. Shouldn't be here. */
|
|
#define TT_ERROR_MACRO_NOMATCH 3 /* No definition for digit sequence. */
|
|
#define TT_ERROR_BAD_CHECKSUM 4 /* Bad checksum on call. */
|
|
#define TT_ERROR_INVALID_CALL 5 /* Invalid callsign. */
|
|
#define TT_ERROR_INVALID_OBJNAME 6 /* Invalid object name. */
|
|
#define TT_ERROR_INVALID_SYMBOL 7 /* Invalid symbol specification. */
|
|
#define TT_ERROR_INVALID_LOC 8 /* Invalid location. */
|
|
#define TT_ERROR_NO_CALL 9 /* No call or object name included. */
|
|
#define TT_ERROR_SATSQ 10 /* Satellite square must be 4 digits. */
|
|
|
|
|
|
#define APRSTT_LOC_DESC_LEN 32 /* Need at least 26 */
|
|
|
|
void aprs_tt_dao_to_desc (char *dao, char *str);
|
|
|
|
void aprs_tt_sequence (int chan, char *msg);
|
|
|
|
#endif
|
|
|
|
/* end aprs_tt.h */ |