HamShield/examples/AX25Receive/AX25Receive.ino

92 lines
2.4 KiB
Arduino
Raw Normal View History

2016-08-14 02:25:46 +00:00
/* Hamshield
* Example: AX25 Receive
* This example receives AFSK test data. You will need seperate
* AFSK equipment to send data for this example.
* Connect the HamShield to your Arduino. Screw the antenna
* into the HamShield RF jack. Plug a pair of headphones into
* the HamShield. Connect the Arduino to wall power and then to
* your computer via USB. After uploading this program to your
2016-08-26 21:40:47 +00:00
* Arduino, open the Serial Monitor so you will see the AFSK
2016-08-14 02:25:46 +00:00
* packet. Send AFSK packet from AFSK equipment at 145.01MHz.
* Note: add message receive code
*/
2015-07-06 17:40:50 +00:00
#include <HamShield.h>
#include <DDS.h>
#include <packet.h>
2015-07-06 17:40:50 +00:00
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;
AFSK afsk;
2015-07-06 17:40:50 +00:00
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();
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();
2015-07-06 17:40:50 +00:00
Serial.println(F("DDS Start"));
delay(100);
dds.start();
Serial.println(F("AFSK start"));
delay(100);
afsk.start(&dds);
2015-07-06 17:40:50 +00:00
Serial.println(F("Starting..."));
delay(100);
dds.setAmplitude(255);
}
uint32_t last = 0;
void loop() {
if(afsk.decoder.read() || afsk.rxPacketCount()) {
2015-07-06 17:40:50 +00:00
// 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(afsk.rxPacketCount()) {
AFSK::Packet *packet = 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();
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
}