OpenModem/Modem/afsk.h

92 lines
2.5 KiB
C
Raw Normal View History

2014-04-03 14:21:37 -06:00
2014-04-03 14:41:49 -06:00
#ifndef FSK_MODEM_H
#define FSK_MODEM_H
2014-04-03 14:21:37 -06:00
2014-04-03 14:41:49 -06:00
#include "config.h"
#include "hardware.h"
2014-04-03 14:21:37 -06:00
#include <cfg/compiler.h>
#include <io/kfile.h>
#include <struct/fifobuf.h>
#define SAMPLERATE 9600
#define BITRATE 1200
2014-04-03 14:54:34 -06:00
#define SAMPLESPERBIT (SAMPLERATE / BITRATE)
2014-04-03 14:21:37 -06:00
typedef struct Hdlc
{
2014-04-03 15:25:22 -06:00
uint8_t demodulatedBits; // Incoming bitstream from demodulator
uint8_t bitIndex; // The current received bit in the current received byte
uint8_t currentByte; // The byte we're currently receiving
bool receiving; // Whether or not where actually receiving data (or just noise ;P)
2014-04-03 14:21:37 -06:00
} Hdlc;
2014-04-03 15:45:41 -06:00
#define RX_OVERRUN BV(0)
2014-04-03 14:21:37 -06:00
typedef struct Afsk
{
2014-04-03 15:22:15 -06:00
KFile fd;
// I/O hardware pins
int adcPin; // Pin for incoming signal
int dacPin; // Pin for outgoing signal
2014-04-03 15:07:21 -06:00
// General values
2014-04-03 15:22:15 -06:00
Hdlc hdlc; // We need a link control structure
uint16_t preambleLength; // Length of sync preamble
uint16_t tailLength; // Length of transmission tail
2014-04-03 15:07:21 -06:00
// Modulation values
2014-04-03 15:22:15 -06:00
uint8_t sampleIndex; // Current sample index for outgoing bit
uint8_t currentOutputByte; // Current byte to be modulated
uint8_t txBit; // Mask of current modulated bit
bool bitStuff; // Whether bitstuffing is allowed
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
uint8_t bitstuffCount; // Counter for bit-stuffing
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
uint16_t phaseAcc; // Phase accumulator
uint16_t phaseInc; // Phase increment per sample
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
FIFOBuffer txFifo; // FIFO for transmit data
2014-04-03 15:45:41 -06:00
uint8_t txBuf[CONFIG_AFSK_TX_BUFLEN]; // Actial data storage for said FIFO
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
volatile bool sending; // Set when modem is sending
2014-04-03 15:07:21 -06:00
// Demodulation values
2014-04-03 15:22:15 -06:00
FIFOBuffer delayFifo; // Delayed FIFO for frequency discrimination
2014-04-03 15:45:41 -06:00
int8_t delayBuf[SAMPLESPERBIT / 2 + 1];// Actual data storage for said FIFO
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
FIFOBuffer rxFifo; // FIFO for received data
2014-04-03 15:45:41 -06:00
uint8_t rxBuf[CONFIG_AFSK_RX_BUFLEN]; // Actual data storage for said FIFO
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
int16_t iirX[2]; // IIR Filter X cells
int16_t iirY[2]; // IIR Filter Y cells
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
uint8_t sampledBits; // Bits sampled by the demodulator (at ADC speed)
int8_t currentPhase; // Current phase of the demodulator
uint8_t actualBits; // Actual found bits at correct bitrate
2014-04-03 15:07:21 -06:00
2014-04-03 15:22:15 -06:00
volatile int status; // Status of the modem, 0 means OK
2014-04-03 15:07:21 -06:00
2014-04-03 14:21:37 -06:00
} Afsk;
2014-04-03 14:54:34 -06:00
#define KFT_AFSK MAKE_ID('F', 'S', 'K', 'M')
2014-04-03 14:21:37 -06:00
INLINE Afsk *AFSK_CAST(KFile *fd)
{
ASSERT(fd->_type == KFT_AFSK);
return (Afsk *)fd;
}
void afsk_adc_isr(Afsk *af, int8_t sample);
uint8_t afsk_dac_isr(Afsk *af);
void afsk_init(Afsk *af, int adc_ch, int dac_ch);
int afsk_testSetup(void);
int afsk_testRun(void);
int afsk_testTearDown(void);
2014-04-03 14:29:26 -06:00
#endif