diff options
author | Keith Packard <keithp@keithp.com> | 2013-03-29 17:05:36 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-03-29 17:05:36 -0700 |
commit | 93a9aa703a0173e13b327ed432e6d52e90ebfa1b (patch) | |
tree | ba7136232c7146abc43132a73683df7a4a966c58 /src/drivers/ao_aprs.c | |
parent | 9aeed244879f90b5b6dab1c7ca095cc001b03fe5 (diff) |
altos: Get CC115L radio working.
This involved figuring out which GPIO signal would reliably indicate
that the transmitter was finished; I ended up using the PA_PD bit for
this.
This also converts all of the radio users to the long packet support
as the CC115L has only a 64-byte fifo, not large enough to hold either
an RDF tone or a regular AltOS telemetry packet.
This also renames the public API for sending APRS packets from
ao_radio_send_lots to ao_radio_send_aprs, which is at least more
accurate. The workings of that API haven't changed, just the name.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/drivers/ao_aprs.c')
-rw-r--r-- | src/drivers/ao_aprs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/ao_aprs.c b/src/drivers/ao_aprs.c index 03bcab05..6ab61e6a 100644 --- a/src/drivers/ao_aprs.c +++ b/src/drivers/ao_aprs.c @@ -593,7 +593,7 @@ void ao_aprs_send(void) tncIndex = 0; tncMode = TNC_TX_SYNC; - ao_radio_send_lots(tncFill); + ao_radio_send_aprs(tncFill); } /** @} */ |