diff options
author | Keith Packard <keithp@keithp.com> | 2012-12-05 23:39:47 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-12-05 23:39:47 -0800 |
commit | 51ef826372f466f44901c4c609ed6a987d30fda4 (patch) | |
tree | ef999111b5cb5ed71c80a8f4b277f8a3828418f8 /src/test/ao_aprs_test.c | |
parent | 74969483736381858484dca9ebb528d9d2d73f5b (diff) |
altos: Prepare APRS for use within altos itself
Make all variables static, const-ify constants, change the public
name of the single entry point.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test/ao_aprs_test.c')
-rw-r--r-- | src/test/ao_aprs_test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/ao_aprs_test.c b/src/test/ao_aprs_test.c index d350ca0d..d0cfb52d 100644 --- a/src/test/ao_aprs_test.c +++ b/src/test/ao_aprs_test.c @@ -89,12 +89,10 @@ audio_gap(int secs) // This is where we go after reset. int main(int argc, char **argv) { - tncInit(); - audio_gap(1); /* Transmit one packet */ - tncTxPacket(); + ao_aprs_send(); exit(0); } |