kopia lustrzana https://github.com/DL7AD/pecanpico10
305 wiersze
9.4 KiB
C
305 wiersze
9.4 KiB
C
#include "ch.h"
|
|
#include "hal.h"
|
|
|
|
#include "debug.h"
|
|
#include "si446x.h"
|
|
#include "geofence.h"
|
|
#include "aprs.h"
|
|
#include "pktconf.h"
|
|
#include "radio.h"
|
|
#include "sleep.h"
|
|
#include "threads.h"
|
|
|
|
/**
|
|
* Packet object is passed in.
|
|
* - Extract information from object as required.
|
|
*/
|
|
static void pktProcessReceivedPacket(pkt_data_object_t *const pkt_buff) {
|
|
ax25char_t *buf = pkt_buff->buffer;
|
|
radio_signal_t rssi = pkt_buff->rssi;
|
|
size_t len = pkt_buff->packet_size;
|
|
|
|
if(len < 3) {
|
|
/*
|
|
* Incoming packet was too short.
|
|
* Nothing to do.
|
|
*/
|
|
TRACE_MON("RX > Packet dropped due to data length < 3");
|
|
return;
|
|
}
|
|
/* Remove CRC from frame. */
|
|
len -= 2;
|
|
|
|
/* Decode APRS frame. */
|
|
packet_t pp = ax25_from_frame(buf, len);
|
|
|
|
if(pp == NULL) {
|
|
TRACE_MON("RX > Error in packet - dropped");
|
|
return;
|
|
}
|
|
/* Continue packet analysis. */
|
|
uint8_t *c;
|
|
uint32_t ilen = ax25_get_info(pp, &c);
|
|
if(ilen == 0) {
|
|
TRACE_MON("RX > Invalid packet structure - dropped");
|
|
pktReleaseCommonPacketBuffer(pp);
|
|
return;
|
|
}
|
|
/* Output packet as text. */
|
|
char serial_buf[512] = {'*'};
|
|
uint8_t n = 1;
|
|
if(pktGetAX25FrameStatus(pkt_buff))
|
|
n = 0;
|
|
/* TODO: Check aprs_debug_getPacket(...) for buffer overrun bug. */
|
|
aprs_debug_getPacket(pp, &serial_buf[n], sizeof(serial_buf) - n);
|
|
if(rssi != 0xFF) {
|
|
TRACE_MON("RX > Packet opening RSSI 0x%x", rssi);
|
|
}
|
|
else {
|
|
TRACE_MON("RX > Packet opening RSSI not captured");
|
|
}
|
|
|
|
TRACE_MON("RX > %s", serial_buf);
|
|
if(pp->num_addr > 0) {
|
|
pp->rssi = rssi;
|
|
aprs_process_packet(pp);
|
|
}
|
|
else {
|
|
TRACE_MON("RX > No addresses in packet - dropped");
|
|
}
|
|
pktReleaseCommonPacketBuffer(pp);
|
|
}
|
|
|
|
void pktMapCallback(pkt_data_object_t *const pkt_buff) {
|
|
|
|
#if PKT_DUMP_BAD_PACKETS == TRUE
|
|
pktProcessReceivedPacket(pkt_buff);
|
|
#else
|
|
/* Report the RSSI. */
|
|
if(pktGetAX25FrameStatus(pkt_buff)) {
|
|
/* Perform the callback if CRC is good. */
|
|
pktProcessReceivedPacket(pkt_buff);
|
|
} else {
|
|
TRACE_MON("RX > Packet opening RSSI 0x%x", pkt_buff->rssi);
|
|
TRACE_MON("RX > Frame has bad CRC - dropped");
|
|
}
|
|
#endif
|
|
/* The object and buffer are freed when the callback returns. */
|
|
}
|
|
|
|
/*
|
|
*
|
|
*/
|
|
bool pktTransmitOnRadio(packet_t pp, const radio_freq_hz_t base_freq,
|
|
const radio_chan_hz_t step, radio_ch_t chan,
|
|
const radio_pwr_t pwr, const radio_mod_t mod,
|
|
const radio_squelch_t cca) {
|
|
|
|
return pktTransmitOnRadioWithCallback(pp,base_freq, step,
|
|
chan, pwr, mod, cca, NULL);
|
|
}
|
|
|
|
/*
|
|
*
|
|
*/
|
|
bool pktTransmitOnRadioWithCallback(packet_t pp, const radio_freq_hz_t base_freq,
|
|
const radio_chan_hz_t step, radio_ch_t chan,
|
|
const radio_pwr_t pwr, const radio_mod_t mod,
|
|
const radio_squelch_t cca,
|
|
const radio_task_cb_t cb) {
|
|
/* Select a radio by frequency. */
|
|
radio_unit_t radio = pktSelectRadioForFrequency(base_freq,
|
|
step,
|
|
chan,
|
|
RADIO_TX);
|
|
|
|
if(radio == PKT_RADIO_NONE) {
|
|
char code_s[100];
|
|
pktDisplayFrequencyCode(base_freq, code_s, sizeof(code_s));
|
|
TRACE_WARN( "RAD > No radio available to transmit on base %s "
|
|
"at channel %d)",
|
|
code_s, chan);
|
|
pktReleaseBufferChain(pp);
|
|
return false;
|
|
}
|
|
|
|
if(!pktIsTransmitAvailable(radio)) {
|
|
TRACE_WARN( "RAD > Transmit is not open on radio");
|
|
pktReleaseBufferChain(pp);
|
|
return false;
|
|
}
|
|
|
|
radio_freq_hz_t op_freq = pktComputeOperatingFrequency(radio,
|
|
base_freq,
|
|
step,
|
|
chan,
|
|
RADIO_TX);
|
|
if(op_freq == FREQ_INVALID) {
|
|
TRACE_ERROR("RAD > Transmit operating frequency of %d.%03d MHz is invalid",
|
|
op_freq/1000000, (op_freq%1000000)/1000);
|
|
pktReleaseBufferChain(pp);
|
|
return false;
|
|
}
|
|
|
|
/* Channel is only used with absolute base frequencies. */
|
|
if(base_freq < FREQ_CODES_END) {
|
|
chan = 0;
|
|
}
|
|
|
|
uint16_t len = ax25_get_info(pp, NULL);
|
|
|
|
/* Check information size. */
|
|
if(AX25_MIN_INFO_LEN < len && len <= AX25_MAX_INFO_LEN) {
|
|
|
|
TRACE_MON( "RAD > %s transmit on %d.%03d MHz (ch %d),"
|
|
" PWR %d, %s, CCA 0x%x, data %d",
|
|
(pp->nextp != NULL) ? "Burst" : "Packet",
|
|
op_freq/1000000, (op_freq%1000000)/1000,
|
|
chan, pwr, getModulation(mod), cca, len
|
|
);
|
|
|
|
/* TODO: Check size of buf. */
|
|
char buf[1024];
|
|
aprs_debug_getPacket(pp, buf, sizeof(buf));
|
|
TRACE_MON("TX > %s", buf);
|
|
|
|
/* The service object. */
|
|
packet_svc_t *handler = pktGetServiceObject(radio);
|
|
#if PKT_RTO_HAS_INNER_CB == TRUE
|
|
/* Get the saved radio data for this new request. */
|
|
radio_params_t rp = handler->radio_tx_config;
|
|
|
|
rp.type = mod;
|
|
rp.base_frequency = op_freq;
|
|
rp.step_hz = step;
|
|
rp.channel = chan;
|
|
rp.tx_power = pwr;
|
|
rp.rssi = cca;
|
|
rp.packet_out = pp;
|
|
|
|
/* Serial number for this TX. */
|
|
rp.seq_num++;
|
|
|
|
/* Update the task mirror. */
|
|
handler->radio_tx_config = rp;
|
|
|
|
msg_t msg = pktQueueRadioCommand(radio, PKT_RADIO_TX_SEND,
|
|
&rp, TIME_S2I(10), cb);
|
|
#else
|
|
/* Get the saved radio data for this new request. */
|
|
radio_task_object_t rt = handler->radio_tx_config;
|
|
|
|
rt.handler = handler;
|
|
rt.command = PKT_RADIO_TX_SEND;
|
|
rt.type = mod;
|
|
rt.base_frequency = op_freq;
|
|
rt.step_hz = step;
|
|
rt.channel = chan;
|
|
rt.tx_power = pwr;
|
|
rt.squelch = cca;
|
|
rt.packet_out = pp;
|
|
|
|
/* Serial number for this TX. */
|
|
rt.rt_seq++;
|
|
|
|
/* Update the task mirror. */
|
|
handler->radio_tx_config = rt;
|
|
|
|
msg_t msg = pktQueueRadioCommand(radio, &rt, TIME_S2I(10), cb);
|
|
#endif
|
|
if(msg == MSG_TIMEOUT) {
|
|
TRACE_ERROR("RAD > Failed to post radio task");
|
|
pktReleaseBufferChain(pp);
|
|
return false;
|
|
}
|
|
} else {
|
|
|
|
TRACE_ERROR("RAD > Information size is invalid for transmission, %d.%03d MHz, "
|
|
"Pwr dBm, %s, %d byte",
|
|
base_freq/1000000, (base_freq%1000000)/1000, pwr,
|
|
getModulation(mod), len);
|
|
|
|
pktReleaseBufferChain(pp);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
THD_FUNCTION(aprsThread, arg) {
|
|
thd_aprs_conf_t* conf = (thd_aprs_conf_t*)arg;
|
|
|
|
radio_unit_t radio = PKT_RADIO_1;
|
|
|
|
if(conf->rx.svc_conf.init_delay) chThdSleep(conf->rx.svc_conf.init_delay);
|
|
systime_t time = chVTGetSystemTime();
|
|
do {
|
|
if(conf->rx.radio_conf.freq == FREQ_RX_APRS) {
|
|
TRACE_ERROR("RX > Cannot specify FREQ_RX_APRS for receive");
|
|
break;
|
|
}
|
|
if(pktIsReceiveReady(radio)) {
|
|
TRACE_MON("RX > Resuming receive on radio %d", radio);
|
|
}
|
|
else {
|
|
TRACE_MON("RX > Opening receive on radio %d", radio);
|
|
}
|
|
msg_t msg = pktOpenReceiveService(radio,
|
|
MOD_AFSK,
|
|
conf->rx.radio_conf.freq,
|
|
0, // Step is 0 for now. Get from radio record.
|
|
0, // Chan = 0 for now
|
|
conf->rx.radio_conf.rssi,
|
|
pktMapCallback,
|
|
TIME_S2I(10));
|
|
if(msg != MSG_OK) {
|
|
TRACE_ERROR("RX > Start of radio %d packet reception failed with error %d",
|
|
radio, msg);
|
|
time = waitForTrigger(time, conf->rx.svc_conf.cycle);
|
|
continue;
|
|
}
|
|
|
|
/*
|
|
* Check if there is a "listening" interval.
|
|
* In that case turn the receive off after that time.
|
|
*/
|
|
if(conf->rx.svc_conf.interval != TIME_IMMEDIATE) {
|
|
chThdSleep(conf->rx.svc_conf.interval);
|
|
TRACE_MON("RX > Pausing receive on radio %d", radio);
|
|
msg = pktDisableDataReception(radio);
|
|
if(msg != MSG_OK) {
|
|
TRACE_ERROR("RX > Pause of radio %d packet reception failed (%d)",
|
|
radio, msg);
|
|
time = waitForTrigger(time, conf->rx.svc_conf.cycle);
|
|
continue;
|
|
}
|
|
}
|
|
/* Start reception at next run time (which may be immediately). */
|
|
time = waitForTrigger(time, conf->rx.svc_conf.cycle);
|
|
} while(true);
|
|
/*
|
|
* If there is no cycle time then run continuously by terminating thread.
|
|
* If there is a cycle time and duration then turn the radio off after that duration.
|
|
* Then turn the radio on after cycle time
|
|
* If duration is TIME_INFINITE then the thread is active but sleeps forever.
|
|
* Hence the radio stays active.
|
|
*/
|
|
pktThdTerminateSelf();
|
|
}
|
|
|
|
/**
|
|
* TODO: Start radio manager for each radio.
|
|
*/
|
|
thread_t *pktStartAPRSthreads(thd_aprs_conf_t *conf, const char *name) {
|
|
|
|
thread_t *th = chThdCreateFromHeap(NULL,
|
|
THD_WORKING_AREA_SIZE(PKT_APRS_MAIN_WA_SIZE),
|
|
name, LOWPRIO, aprsThread, conf);
|
|
if(!th) {
|
|
TRACE_ERROR("APRS > Could not start thread (insufficient memory)");
|
|
}
|
|
return th;
|
|
}
|