From 1f94513b5880b9927e48a67c3432a76ba8c9f830 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 17 Nov 2015 08:09:39 +0100 Subject: [PATCH] Rolling back changes from a7a167c19ba03fcdf118c07345fa3656f09369ea that broke the build. Please test on actual hardware before pull-requesting "improvements"... --- device.h | 11 +---------- hardware/AFSK.c | 19 ++++++------------- hardware/AFSK.h | 23 ++++++++--------------- 3 files changed, 15 insertions(+), 38 deletions(-) diff --git a/device.h b/device.h index 2c0ab1a..c26447a 100644 --- a/device.h +++ b/device.h @@ -38,17 +38,8 @@ #define DAC_DDR DDRD #define LED_PORT PORTB #define LED_DDR DDRB - #define PTT_PORT PORTD - #define PTT_DDR DDRD #define ADC_PORT PORTC #define ADC_DDR DDRC - // Pins 3-7 on Port D = Arduino D3 - D7 - #define DAC_HIGH _BV(7) - #define DAC_PINS _BV(7)&_BV(6)&_BV(5)&_BV(4) - #define LED_TX 1 // Arduino D9 - #define LED_RX 2 // Arduino D10 - #define PTT_TX 3 // Arduino D11 - #define ADC_NO 0 // Arduino A0 #endif -#endif +#endif \ No newline at end of file diff --git a/hardware/AFSK.c b/hardware/AFSK.c index b43613c..05f89e7 100644 --- a/hardware/AFSK.c +++ b/hardware/AFSK.c @@ -38,9 +38,9 @@ void AFSK_hw_init(void) { ADMUX = 0; } - ADC_DDR &= ~_BV(ADC_NO); - ADC_PORT &= ~_BV(ADC_NO); - DIDR0 |= _BV(ADC_NO); + ADC_DDR &= ~_BV(0); + ADC_PORT &= ~_BV(0); + DIDR0 |= _BV(0); ADCSRB = _BV(ADTS2) | _BV(ADTS1) | _BV(ADTS0); @@ -51,7 +51,6 @@ void AFSK_hw_init(void) { _BV(ADPS2); AFSK_DAC_INIT(); - PTT_INIT(); LED_TX_INIT(); LED_RX_INIT(); } @@ -85,7 +84,6 @@ static void AFSK_txStart(Afsk *afsk) { afsk->phaseAcc = 0; afsk->bitstuffCount = 0; afsk->sending = true; - PTT_TX_ON(); LED_TX_ON(); afsk->preambleLength = DIV_ROUND(custom_preamble * BITRATE, 8000); AFSK_DAC_IRQ_START(); @@ -123,7 +121,6 @@ uint8_t AFSK_dac_isr(Afsk *afsk) { if (fifo_isempty(&afsk->txFifo) && afsk->tailLength == 0) { AFSK_DAC_IRQ_STOP(); afsk->sending = false; - PTT_TX_OFF(); LED_TX_OFF(); return 0; } else { @@ -144,7 +141,6 @@ uint8_t AFSK_dac_isr(Afsk *afsk) { if (fifo_isempty(&afsk->txFifo)) { AFSK_DAC_IRQ_STOP(); afsk->sending = false; - PTT_TX_OFF(); LED_TX_OFF(); return 0; } else { @@ -503,12 +499,9 @@ ISR(ADC_vect) { TIFR1 = _BV(ICF1); AFSK_adc_isr(AFSK_modem, ((int16_t)((ADC) >> 2) - 128)); if (hw_afsk_dac_isr) { - // Set DAC pin(s) according to position in SIN wave. - DAC_PORT |= (AFSK_dac_isr(AFSK_modem) & DAC_PINS); + DAC_PORT = (AFSK_dac_isr(AFSK_modem) & 0xF0) | _BV(3); } else { - // Set DAC pin(s) to the zero point in the SIN wave. - // This is represented by setting only the high-bit. - DAC_PORT = (DAC_PORT & (~DAC_PINS)) | DAC_HIGH; + DAC_PORT = 128; } ++_clock; -} +} \ No newline at end of file diff --git a/hardware/AFSK.h b/hardware/AFSK.h index d5440f3..cd2fc92 100644 --- a/hardware/AFSK.h +++ b/hardware/AFSK.h @@ -142,30 +142,23 @@ typedef struct Afsk #define AFSK_DAC_IRQ_START() do { extern bool hw_afsk_dac_isr; hw_afsk_dac_isr = true; } while (0) #define AFSK_DAC_IRQ_STOP() do { extern bool hw_afsk_dac_isr; hw_afsk_dac_isr = false; } while (0) -// DAC_PINS equals b11111000 which on port D on Arduino sets D3, D4, D5, D6, D7 -// to be outputs. -#define AFSK_DAC_INIT() do { DAC_DDR |= DAC_PINS; } while (0) +#define AFSK_DAC_INIT() do { DAC_DDR |= 0xF8; } while (0) // Here's some macros for controlling the RX/TX LEDs // THE _INIT() functions writes to the DDRB register // to configure the pins as output pins, and the _ON() // and _OFF() functions writes to the PORT registers // to turn the pins on or off. -#define LED_TX_INIT() do { LED_DDR |= _BV(LED_TX); } while (0) -#define LED_TX_ON() do { LED_PORT |= _BV(LED_TX); } while (0) -#define LED_TX_OFF() do { LED_PORT &= ~_BV(LED_TX); } while (0) +#define LED_TX_INIT() do { LED_DDR |= _BV(1); } while (0) +#define LED_TX_ON() do { LED_PORT |= _BV(1); } while (0) +#define LED_TX_OFF() do { LED_PORT &= ~_BV(1); } while (0) -#define LED_RX_INIT() do { LED_DDR |= _BV(LED_RX); } while (0) -#define LED_RX_ON() do { LED_PORT |= _BV(LED_RX); } while (0) -#define LED_RX_OFF() do { LED_PORT &= ~_BV(LED_RX); } while (0) - -// Along the same lines, these initialize and control the PTT signal -#define PTT_INIT() do { PTT_DDR |= _BV(PTT_TX); } while (0) -#define PTT_TX_ON() do { PTT_PORT |= _BV(PTT_TX); } while (0) -#define PTT_TX_OFF() do { PTT_PORT &= ~_BV(PTT_TX); } while (0) +#define LED_RX_INIT() do { LED_DDR |= _BV(2); } while (0) +#define LED_RX_ON() do { LED_PORT |= _BV(2); } while (0) +#define LED_RX_OFF() do { LED_PORT &= ~_BV(2); } while (0) void AFSK_init(Afsk *afsk); void AFSK_transmit(char *buffer, size_t size); void AFSK_poll(Afsk *afsk); -#endif +#endif \ No newline at end of file