HamShield/examples/AX25Receive/AX25Receive.ino

78 lines
2.0 KiB
Arduino
Raw Permalink Normal View History

2015-07-06 17:40:50 +00:00
#include <HamShield.h>
2015-11-23 16:54:10 +00:00
#define PWM_PIN 3
#define RESET_PIN A3
#define SWITCH_PIN 2
2015-07-06 17:40:50 +00:00
HamShield radio;
DDS dds;
void setup() {
2015-11-23 16:54:10 +00:00
// NOTE: if not using PWM out, it should be held low to avoid tx noise
pinMode(PWM_PIN, OUTPUT);
digitalWrite(PWM_PIN, LOW);
// prep the switch
pinMode(SWITCH_PIN, INPUT_PULLUP);
// set up the reset control pin
pinMode(RESET_PIN, OUTPUT);
// turn on radio
digitalWrite(RESET_PIN, HIGH);
2015-07-06 17:40:50 +00:00
Serial.begin(9600);
2016-04-14 02:12:06 +00:00
2015-07-06 17:40:50 +00:00
Serial.println(F("Radio test connection"));
Serial.println(radio.testConnection(), DEC);
Serial.println(F("Initialize"));
delay(100);
radio.initialize();
radio.frequency(145010);
radio.setSQOff();
I2Cdev::writeWord(A1846S_DEV_ADDR_SENLOW, 0x44, 0b11111111);
2015-07-06 17:40:50 +00:00
Serial.println(F("Frequency"));
delay(100);
Serial.print(F("Squelch(H/L): "));
Serial.print(radio.getSQHiThresh());
Serial.print(F(" / "));
Serial.println(radio.getSQLoThresh());
radio.setModeReceive();
Serial.print(F("RX? "));
Serial.println(radio.getRX());
2015-07-06 17:40:50 +00:00
Serial.println(F("DDS Start"));
delay(100);
dds.start();
Serial.println(F("AFSK start"));
delay(100);
radio.afsk.start(&dds);
Serial.println(F("Starting..."));
delay(100);
dds.setAmplitude(255);
}
uint32_t last = 0;
void loop() {
if(radio.afsk.decoder.read() || radio.afsk.rxPacketCount()) {
// A true return means something was put onto the packet FIFO
// If we actually have data packets in the buffer, process them all now
while(radio.afsk.rxPacketCount()) {
AFSK::Packet *packet = radio.afsk.getRXPacket();
Serial.print(F("Packet: "));
2015-07-06 17:40:50 +00:00
if(packet) {
packet->printPacket(&Serial);
2015-07-06 17:40:50 +00:00
AFSK::PacketBuffer::freePacket(packet);
}
}
}
}
2015-11-23 16:54:10 +00:00
//TODO: d2 is the switch input, so remove this
2015-07-06 17:40:50 +00:00
ISR(ADC_vect) {
static uint8_t tcnt = 0;
TIFR1 = _BV(ICF1); // Clear the timer flag
2015-11-23 16:54:10 +00:00
//PORTD |= _BV(2); // Diagnostic pin (D2)
2015-07-06 17:40:50 +00:00
//dds.clockTick();
radio.afsk.timer();
2015-11-23 16:54:10 +00:00
//PORTD &= ~(_BV(2)); // Pin D2 off again
2015-07-06 17:40:50 +00:00
}