guides:linkingarduinotontx2
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:linkingarduinotontx2 [2016/03/09 09:00] – Amended link to NTX2B purchase upu | guides:linkingarduinotontx2 [2016/10/21 21:57] (current) – upu | ||
---|---|---|---|
Line 5: | Line 5: | ||
==== Introduction ==== | ==== Introduction ==== | ||
- | Getting your Arduino to transmit via the radio initially may seem daunting but its actually pretty simple. Please freely substitute the word " | + | Getting your Arduino to transmit via the radio initially may seem daunting but its actually pretty simple. Please freely substitute the word " |
Please read this : | Please read this : | ||
- | **This may be the first bit of code you've come across with regards to creating a tracker. There is always the temptation | + | **This may be the first bit of code you've come across with regards to creating a tracker. There is always the tempation |
- | In this short tutorial I’ll give a step by step instructions on connecting a [[http://www.radiometrix.com/ntx2b|Radiometrix NTX2B]] to an Arduino and getting it to shift its transmission between two frequencies slightly giving two tones. In the second part I’ll demonstrate how to control this and use the circuit to transmit data at 50 or 300 baud using [[http:// | + | In this short tutorial I’ll give a step by step instructions on connecting a [[https://store.uputronics.com/index.php? |
- | The theory is as follows: you adjust the voltage on the NTX2B' | + | The theory is as follows: you adjust the voltage on the NTX2B' |
The NTX2B is a FM (Frequency Modulation) module intended to have a voltage applied to the TXD pin of between 0 and 3 volts. This voltage range changes the output frequency of the module by up to 6KHz. This means for each 1Hz change in frequency you need to change the voltage by 0.0005v (3 divided 6000) so to get a shift of 500hz you need to toggle the voltage applied to the TXD pin by 500x0.0005=0.25v. | The NTX2B is a FM (Frequency Modulation) module intended to have a voltage applied to the TXD pin of between 0 and 3 volts. This voltage range changes the output frequency of the module by up to 6KHz. This means for each 1Hz change in frequency you need to change the voltage by 0.0005v (3 divided 6000) so to get a shift of 500hz you need to toggle the voltage applied to the TXD pin by 500x0.0005=0.25v. | ||
- | To get this voltage | + | Getting the shift totally accurate isn't entirely essential but it should |
- | + | ||
- | In theory the standard shift of 425Hz equates to a 0.2125/ | + | |
==== Items Required ==== | ==== Items Required ==== | ||
| | ||
- | | + | |
+ | 1 x 47k resistor (Somewhere from 40k to 50k exact value isn't critical)\\ | ||
+ | (For 3.3v somewhere round 32k)\\ | ||
+ | 2 x 4.7K resistor \\ | ||
+ | | ||
+ | PC with DL-FLDIGI installed. | ||
==== Circuit Diagram ==== | ==== Circuit Diagram ==== | ||
- | {{:guides:ntx2b.jpg?600|}} | + | Firstly we build the following circuit (click it for larger) on the bread board : |
+ | |||
+ | {{:guides:ntx2_1_47k.png?300|}} | ||
- | Connect Arduino 5V to the NTX2B VCC pin 5 | + | The two 4k7 resistors, R4 and R5, sets the bias (centre) point of the two levels |
- | Connect Arduino 5V to the NTX2B EN pin 4 | + | |
- | Connect Arduino GND to the NTX2B GND pin 6 | + | |
- | Connect Arduino pin 9 to the NTX2B TXD pin 7 | + | |
- | Once done it should look like this (you don’t need an antenna in at this point) | + | {{:guides: |
- | {{:guides:ntx2b-2.jpg?600|}} | + | [[http:// |
+ | ==== Build It ==== | ||
- | ==== The Code ==== | + | 1/ Add the power and resistors as your board allows : |
- | The code is similar | + | {{: |
+ | |||
+ | 2/ Insert the NTX2. You can safely transmit with no antenna installed, no damage will occur to the module. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | 3/ From the Arduino connect 5V & GND and connect the pin marked RXD on the diagram to pin 13 on the Arduino. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | 4/ Plug in the Arduino and load up the following code : | ||
<code c> | <code c> | ||
- | /* | + | |
- | Demo Code to Drive NTX2B via PWM | + | /* NTX2 Radio Test Part 1 |
- | + | ||
- | Written | + | Toggles the NTX2 high and low to generate a tone pattern to ascertain |
- | + | if the radio and associated circuitry is working. | |
- | This example code is in the public domain. | + | |
- | */ | + | Created 2012 by M0UPU as part of a UKHAS Guide on linking NTX2 Modules to Arduino. |
- | + | ||
- | #define RADIOPIN | + | |
- | + | */ | |
- | void setup() { | + | |
- | pinMode(RADIOPIN, | + | #define RADIOPIN |
- | setPwmFrequency(RADIOPIN, | + | |
- | } | + | void setup() |
- | + | { | |
- | void loop() { | + | pinMode(RADIOPIN, |
- | analogWrite(RADIOPIN, | + | |
- | delay(500); | + | |
- | analogWrite(RADIOPIN, | + | |
- | delay(500); | + | |
} | } | ||
- | void setPwmFrequency(int pin, int divisor) { | ||
- | byte mode; | ||
- | if(pin == 5 || pin == 6 || pin == 9 || pin == 10) { | ||
- | switch(divisor) { | ||
- | case 1: | ||
- | mode = 0x01; | ||
- | break; | ||
- | case 8: | ||
- | mode = 0x02; | ||
- | break; | ||
- | case 64: | ||
- | mode = 0x03; | ||
- | break; | ||
- | case 256: | ||
- | mode = 0x04; | ||
- | break; | ||
- | case 1024: | ||
- | mode = 0x05; | ||
- | break; | ||
- | default: | ||
- | return; | ||
- | } | ||
- | if(pin == 5 || pin == 6) { | + | void loop() |
- | TCCR0B = TCCR0B & 0b11111000 | mode; | + | { |
- | } | + | digitalWrite(RADIOPIN, |
- | | + | delay(100); |
- | | + | digitalWrite(RADIOPIN, LOW); |
- | } | + | delay(100); |
- | } | + | |
- | else if(pin == 3 || pin == 11) { | + | |
- | | + | |
- | case 1: | + | |
- | mode = 0x01; | + | |
- | break; | + | |
- | case 8: | + | |
- | mode = 0x02; | + | |
- | break; | + | |
- | case 32: | + | |
- | mode = 0x03; | + | |
- | break; | + | |
- | case 64: | + | |
- | mode = 0x04; | + | |
- | break; | + | |
- | case 128: | + | |
- | mode = 0x05; | + | |
- | break; | + | |
- | case 256: | + | |
- | mode = 0x06; | + | |
- | break; | + | |
- | case 1024: | + | |
- | mode = 0x7; | + | |
- | break; | + | |
- | default: | + | |
- | return; | + | |
- | } | + | |
- | TCCR2B = TCCR2B & 0b11111000 | mode; | + | |
- | } | + | |
} | } | ||
</ | </ | ||
- | Excluding the setPwmFrequency procedure (all this does is set the PWM speed as quick as it will go to made the voltage presented | + | If you have used Arduino before |
- | Load this code up to the Arduino. | + | 5/ Tune in your radio to the frequency listed on your NTX2 module (either 434.075Mhz or 434.650Mhz) ensuring you have the mode set to USB. You should hear an alternating sequence of beeps. You may need to tune up or down a little, if you can't find it go back and check your circuit. Its most likely you'll find the transmission slighly below the frequency listed on the module. |
- | Ok now take your radio in USB mode and tune it into the frequency of the NTX2B module. You should hear the high and low tones. If you’re using an RTL + SDR# set the frequency to something above the frequency of the module, i.e in this example our NTX2B is transmitting on 434.200Mhz so I’ve set SDR# to 434.500Mhz. You can see a peak on the left of the spectrum analyzer at the top around 434.200Mhz : | + | {{: |
- | {{:guides: | + | 6/ Now open up dl-fldigi and adjust the frequency and volume until you get a nice pair of lines on the water fall : |
- | If you’re unsure if this is the radio, turn it off. It will disappear. Zoom in the line using the zoom on the right. You may want to increase the resolution in the FFT Display at this point, with a resolution of 262144 you should see some distinct high and low tones separated by about 425hz : | + | {{:frontpage: |
- | {{: | + | Note the distance between your lines is the shift and in this case is 425Hz, you can adjust this by playing with the value of the R3 resistor. |
+ | |||
+ | Congratulations you’re transmitting using the most basic Arduino example code there is. | ||
- | Congratulations you’re | + | ===== Part 2 - Making RTTY and transmitting |
- | ===== Part 2 - RTTY ===== | + | ==== Introduction |
- | ==== Introduction ===== | + | In part 1 of this article I discussed linking the NTX2 to the Arduino and getting a high and low tone out of it. In this article we go one step further and turn this into a transmission of data. |
- | Once you have the high and low code working we can now take this one step further and turn this into the transmission | + | Using the circuit discussed in the previous article upload the following |
+ | Also the code adds a [[communication: | ||
- | Using the circuit discussed in the previous article upload | + | The DATASTRING is passed to a procedure called rtty_txtstring which takes care of transmitting |
- | The data string variable is passed | + | 300 baud after some playing seemed |
- | 300 baud after some playing seemed to be stable around 3370µS delay ( 300 baud should be 1/ | + | ==== Demo Code To Transmit RTTY ==== |
- | + | ||
- | ==== The Code ===== | + | |
<code c> | <code c> | ||
- | /* | + | /* NTX2 Radio Test Part 2 |
- | Demo Code to Drive NTX2B via PWM | + | |
- | + | ||
- | Written by Anthony Stirk M0UPU | + | |
- | RTTY code from Rob Harrison Icarus Project. | + | |
- | + | ||
- | http:// | + | |
- | This example | + | Transmits data via RTTY with a checksum. |
- | */ | + | |
+ | Created 2012 by M0UPU as part of a UKHAS Guide on linking NTX2 Modules to Arduino. | ||
+ | RTTY code from Rob Harrison Icarus Project. | ||
+ | http:// | ||
+ | */ | ||
- | #define RADIOPIN | + | #define RADIOPIN |
#include < | #include < | ||
Line 173: | Line 130: | ||
char datastring[80]; | char datastring[80]; | ||
- | void setup() { | + | void setup() { |
- | pinMode(RADIOPIN, | + | pinMode(RADIOPIN, |
- | setPwmFrequency(RADIOPIN, | + | |
} | } | ||
void loop() { | void loop() { | ||
- | snprintf(datastring, | ||
- | unsigned int CHECKSUM = gps_CRC16_checksum(datastring); | ||
- | char checksum_str[6]; | ||
- | sprintf(checksum_str, | ||
- | strcat(datastring, | ||
- | rtty_txstring (datastring); | ||
- | } | ||
- | void rtty_txstring | + | |
- | | + | sprintf(datastring," |
- | ** rtty_txbyte function. | + | |
- | ** NB Each char is one byte (8 Bits) | + | char checksum_str[6]; |
- | */ | + | |
- | + | strcat(datastring, | |
- | | + | |
- | c = *string++; | + | |
- | while ( c != ' | + | rtty_txstring |
- | | + | delay(2000); |
- | c = *string++; | + | |
- | } | + | |
} | } | ||
- | void rtty_txbyte (char c) { | ||
- | /* Simple function to sent each bit of a char to | ||
- | ** rtty_txbit function. | ||
- | ** NB The bits are sent Least Significant Bit first | ||
- | ** | ||
- | ** All chars should be preceded with a 0 and | ||
- | ** proceed with a 1. 0 = Start bit; 1 = Stop bit | ||
- | ** | ||
- | */ | ||
- | int i; | ||
- | rtty_txbit | + | void rtty_txstring |
+ | { | ||
- | | + | |
+ | ** rtty_txbyte function. | ||
+ | ** NB Each char is one byte (8 Bits) | ||
+ | */ | ||
- | for (i=0; | + | char c; |
- | if (c & 1) rtty_txbit(1); | + | |
- | else rtty_txbit(0); | + | |
- | | + | |
- | } | + | |
- | rtty_txbit (1); // Stop bit | + | |
- | rtty_txbit (1); // Stop bit | + | |
- | } | + | |
- | void rtty_txbit | + | while ( c != ' |
- | | + | |
- | // high | + | |
- | analogWrite(RADIOPIN, | + | |
- | | + | } |
- | else { | + | |
- | // low | + | |
- | analogWrite(RADIOPIN, | + | |
- | } | + | |
- | + | ||
- | // delayMicroseconds(3370); | + | |
- | delayMicroseconds(10000); | + | |
- | delayMicroseconds(10150); | + | |
- | // largest value that will produce an accurate delay is 16383 | + | |
- | // See : http:// | + | |
} | } | ||
- | uint16_t gps_CRC16_checksum (char *string) { | ||
- | size_t i; | ||
- | uint16_t crc; | ||
- | uint8_t c; | ||
- | crc = 0xFFFF; | + | void rtty_txbyte (char c) |
+ | { | ||
+ | /* Simple function to sent each bit of a char to | ||
+ | ** rtty_txbit function. | ||
+ | ** NB The bits are sent Least Significant Bit first | ||
+ | ** | ||
+ | ** All chars should be preceded with a 0 and | ||
+ | ** proceded with a 1. 0 = Start bit; 1 = Stop bit | ||
+ | ** | ||
+ | */ | ||
- | // Calculate checksum ignoring the first two $s | + | int i; |
- | for (i = 2; i < strlen(string); | + | |
- | c = string[i]; | + | |
- | crc = _crc_xmodem_update (crc, c); | + | |
- | } | + | |
- | return crc; | + | rtty_txbit (0); // Start bit |
- | } | + | |
- | void setPwmFrequency(int pin, int divisor) { | + | // Send bits for for char LSB first |
- | byte mode; | + | |
- | if(pin == 5 || pin == 6 || pin == 9 || pin == 10) { | + | |
- | switch(divisor) { | + | |
- | case 1: | + | |
- | mode = 0x01; | + | |
- | break; | + | |
- | case 8: | + | |
- | mode = 0x02; | + | |
- | break; | + | |
- | case 64: | + | |
- | mode = 0x03; | + | |
- | break; | + | |
- | case 256: | + | |
- | mode = 0x04; | + | |
- | break; | + | |
- | case 1024: | + | |
- | mode = 0x05; | + | |
- | break; | + | |
- | default: | + | |
- | return; | + | |
- | } | + | |
- | if(pin == 5 || pin == 6) { | + | for (i=0; |
- | | + | { |
- | } | + | if (c & 1) rtty_txbit(1); |
- | else { | + | |
- | TCCR1B = TCCR1B & 0b11111000 | mode; | + | |
- | } | + | |
- | | + | |
- | else if(pin == 3 || pin == 11) { | + | |
- | switch(divisor) { | + | |
- | case 1: | + | |
- | mode = 0x01; | + | |
- | break; | + | |
- | case 8: | + | |
- | mode = 0x02; | + | |
- | break; | + | |
- | case 32: | + | |
- | mode = 0x03; | + | |
- | break; | + | |
- | case 64: | + | |
- | mode = 0x04; | + | |
- | break; | + | |
- | case 128: | + | |
- | mode = 0x05; | + | |
- | break; | + | |
- | case 256: | + | |
- | mode = 0x06; | + | |
- | break; | + | |
- | case 1024: | + | |
- | mode = 0x7; | + | |
- | break; | + | |
- | default: | + | |
- | return; | + | |
- | } | + | |
- | TCCR2B = TCCR2B & 0b11111000 | mode; | + | |
- | } | + | |
- | } | + | |
- | </ | + | |
- | Load this up and you should hear the distinctive warble of RTTY coming out of your radio. Route this audio into DL-FLDIGI and you should see the bars in the center of the waterfall like this : | + | else rtty_txbit(0); |
- | {{: | + | c = c >> 1; |
- | In DL-FLDIGI click Op Mode -> RTTY -> | + | } |
- | Set carrier shift to 425, baud to 50, 7 bits per character, no parity and 2 stop bits. If everything is ok you should see DL-FLDIGI decoding the RTTY. | + | |
- | ===== Part 3 - DominoEX ===== | + | rtty_txbit (1); // Stop bit |
+ | rtty_txbit (1); // Stop bit | ||
+ | } | ||
- | ==== Introduction ===== | + | void rtty_txbit (int bit) |
+ | { | ||
+ | if (bit) | ||
+ | { | ||
+ | // high | ||
+ | digitalWrite(RADIOPIN, | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | // low | ||
+ | digitalWrite(RADIOPIN, | ||
- | RTTY as discussed in Part 2 of this article uses two tones a high and a low tone to convey the data. Whilst simple its performance can degrade as the signal gets weaker and with no error correction you may get packets with errors in them. To mitigate a little against this there is a more robust mode called DominoEX. | + | } |
- | Note : This example should work with the original NTX2 but you may get significant drift as the temperature changes which will change the tone spacing and mean this doesn' | + | // delayMicroseconds(3370); |
+ | delayMicroseconds(10000); | ||
+ | delayMicroseconds(10150); | ||
+ | // largest value that will produce an accurate delay is 16383 | ||
+ | // See : http:// | ||
- | DominoEX is an MFSK (Multiple frequency-shift keying) mode that uses 18 tones to transmit data, although there is no error correction built in the performance of DominoEX is such that its rarely needed. If you can hear the signal generally you can decode it. For a more in depth description please visit this page : [[http:// | ||
- | |||
- | The key to DominoEX working is the distance between the tones has to be very precise. For DominoEX16 the tone spacing has to be 15.625Hz. As you saw before our 8 bit Arduino doesn' | ||
- | |||
- | Using this method a 175k resistor means each PWM step gives the voltage needed to step the frequency up by the required amount. You may need to play with this to get the correct value. Here I'm using a [[https:// | ||
- | |||
- | {{: | ||
- | |||
- | ==== The Code ===== | ||
- | |||
- | <code c> | ||
- | /* | ||
- | Demo Code to Drive NTX2B via PWM | ||
- | DominoEX | ||
- | Written by Anthony Stirk M0UPU | ||
- | This example code is in the public domain. | ||
- | */ | ||
- | |||
- | #define RADIOPIN 9 | ||
- | |||
- | unsigned char varicode[][3] = { | ||
- | /* Primary alphabet */ | ||
- | { 1,15, 9}, { 1,15,10}, { 1,15,11}, { 1,15,12}, { 1,15,13}, { 1,15,14}, { 1,15,15}, { 2, 8, 8}, | ||
- | { 2,12, 0}, { 2, 8, 9}, { 2, 8,10}, { 2, 8,11}, { 2, 8,12}, { 2,13, 0}, { 2, 8,13}, { 2, 8,14}, | ||
- | { 2, 8,15}, { 2, 9, 8}, { 2, 9, 9}, { 2, 9,10}, { 2, 9,11}, { 2, 9,12}, { 2, 9,13}, { 2, 9,14}, | ||
- | { 2, 9,15}, { 2,10, 8}, { 2,10, 9}, { 2,10,10}, { 2,10,11}, { 2,10,12}, { 2,10,13}, { 2,10,14}, | ||
- | { 0, 0, 0}, { 7,11, 0}, { 0, 8,14}, { 0,10,11}, { 0, 9,10}, { 0, 9, 9}, { 0, 8,15}, { 7,10, 0}, | ||
- | { 0, 8,12}, { 0, 8,11}, { 0, 9,13}, { 0, 8, 8}, { 2,11, 0}, { 7,14, 0}, { 7,13, 0}, { 0, 8, 9}, | ||
- | { 3,15, 0}, { 4,10, 0}, { 4,15, 0}, { 5, 9, 0}, { 6, 8, 0}, { 5,12, 0}, { 5,14, 0}, { 6,12, 0}, | ||
- | { 6,11, 0}, { 6,14, 0}, { 0, 8,10}, { 0, 8,13}, { 0,10, 8}, { 7,15, 0}, { 0, 9,15}, { 7,12, 0}, | ||
- | { 0, 9, 8}, { 3, 9, 0}, { 4,14, 0}, { 3,12, 0}, { 3,14, 0}, { 3, 8, 0}, { 4,12, 0}, { 5, 8, 0}, | ||
- | { 5,10, 0}, { 3,10, 0}, { 7, 8, 0}, { 6,10, 0}, { 4,11, 0}, { 4, 8, 0}, { 4,13, 0}, { 3,11, 0}, | ||
- | { 4, 9, 0}, { 6,15, 0}, { 3,13, 0}, { 2,15, 0}, { 2,14, 0}, { 5,11, 0}, { 6,13, 0}, { 5,13, 0}, | ||
- | { 5,15, 0}, { 6, 9, 0}, { 7, 9, 0}, { 0,10,14}, { 0,10, 9}, { 0,10,15}, { 0,10,10}, { 0, 9,12}, | ||
- | { 0, 9,11}, { 4, 0, 0}, { 1,11, 0}, { 0,12, 0}, { 0,11, 0}, { 1, 0, 0}, { 0,15, 0}, { 1, 9, 0}, | ||
- | { 0,10, 0}, { 5, 0, 0}, { 2,10, 0}, { 1,14, 0}, { 0, 9, 0}, { 0,14, 0}, { 6, 0, 0}, { 3, 0, 0}, | ||
- | { 1, 8, 0}, { 2, 8, 0}, { 7, 0, 0}, { 0, 8, 0}, { 2, 0, 0}, { 0,13, 0}, { 1,13, 0}, { 1,12, 0}, | ||
- | { 1,15, 0}, { 1,10, 0}, { 2, 9, 0}, { 0,10,12}, { 0, 9,14}, { 0,10,12}, { 0,11, 8}, { 2,10,15}, | ||
- | { 2,11, 8}, { 2,11, 9}, { 2,11,10}, { 2,11,11}, { 2,11,12}, { 2,11,13}, { 2,11,14}, { 2,11,15}, | ||
- | { 2,12, 8}, { 2,12, 9}, { 2,12,10}, { 2,12,11}, { 2,12,12}, { 2,12,13}, { 2,12,14}, { 2,12,15}, | ||
- | { 2,13, 8}, { 2,13, 9}, { 2,13,10}, { 2,13,11}, { 2,13,12}, { 2,13,13}, { 2,13,14}, { 2,13,15}, | ||
- | { 2,14, 8}, { 2,14, 9}, { 2,14,10}, { 2,14,11}, { 2,14,12}, { 2,14,13}, { 2,14,14}, { 2,14,15}, | ||
- | { 0,11, 9}, { 0,11,10}, { 0,11,11}, { 0,11,12}, { 0,11,13}, { 0,11,14}, { 0,11,15}, { 0,12, 8}, | ||
- | { 0,12, 9}, { 0,12,10}, { 0,12,11}, { 0,12,12}, { 0,12,13}, { 0,12,14}, { 0,12,15}, { 0,13, 8}, | ||
- | { 0,13, 9}, { 0,13,10}, { 0,13,11}, { 0,13,12}, { 0,13,13}, { 0,13,14}, { 0,13,15}, { 0,14, 8}, | ||
- | { 0,14, 9}, { 0,14,10}, { 0,14,11}, { 0,14,12}, { 0,14,13}, { 0,14,14}, { 0,14,15}, { 0,15, 8}, | ||
- | { 0,15, 9}, { 0,15,10}, { 0,15,11}, { 0,15,12}, { 0,15,13}, { 0,15,14}, { 0,15,15}, { 1, 8, 8}, | ||
- | { 1, 8, 9}, { 1, 8,10}, { 1, 8,11}, { 1, 8,12}, { 1, 8,13}, { 1, 8,14}, { 1, 8,15}, { 1, 9, 8}, | ||
- | { 1, 9, 9}, { 1, 9,10}, { 1, 9,11}, { 1, 9,12}, { 1, 9,13}, { 1, 9,14}, { 1, 9,15}, { 1,10, 8}, | ||
- | { 1,10, 9}, { 1,10,10}, { 1,10,11}, { 1,10,12}, { 1,10,13}, { 1,10,14}, { 1,10,15}, { 1,11, 8}, | ||
- | { 1,11, 9}, { 1,11,10}, { 1,11,11}, { 1,11,12}, { 1,11,13}, { 1,11,14}, { 1,11,15}, { 1,12, 8}, | ||
- | { 1,12, 9}, { 1,12,10}, { 1,12,11}, { 1,12,12}, { 1,12,13}, { 1,12,14}, { 1,12,15}, { 1,13, 8}, | ||
- | { 1,13, 9}, { 1,13,10}, { 1,13,11}, { 1,13,12}, { 1,13,13}, { 1,13,14}, { 1,13,15}, { 1,14, 8}, | ||
- | { 1,14, 9}, { 1,14,10}, { 1,14,11}, { 1,14,12}, { 1,14,13}, { 1,14,14}, { 1,14,15}, { 1,15, 8}, | ||
- | |||
- | /* Secondary alphabet */ | ||
- | { 6,15, 9}, { 6,15,10}, { 6,15,11}, { 6,15,12}, { 6,15,13}, { 6,15,14}, { 6,15,15}, { 7, 8, 8}, | ||
- | { 4,10,12}, { 7, 8, 9}, { 7, 8,10}, { 7, 8,11}, { 7, 8,12}, { 4,10,13}, { 7, 8,13}, { 7, 8,14}, | ||
- | { 7, 8,15}, { 7, 9, 8}, { 7, 9, 9}, { 7, 9,10}, { 7, 9,11}, { 7, 9,12}, { 7, 9,13}, { 7, 9,14}, | ||
- | { 7, 9,15}, { 7,10, 8}, { 7,10, 9}, { 7,10,10}, { 7,10,11}, { 7,10,12}, { 7,10,13}, { 7,10,14}, | ||
- | { 3, 8, 8}, { 4,15,11}, { 5, 8,14}, { 5,10,11}, { 5, 9,10}, { 5, 9, 9}, { 5, 8,15}, { 4,15,10}, | ||
- | { 5, 8,12}, { 5, 8,11}, { 5, 9,13}, { 5, 8, 8}, { 4,10,11}, { 4,15,14}, { 4,15,13}, { 5, 8, 9}, | ||
- | { 4,11,15}, { 4,12,10}, { 4,12,15}, { 4,13, 9}, { 4,14, 8}, { 4,13,12}, { 4,13,14}, { 4,14,12}, | ||
- | { 4,14,11}, { 4,14,14}, { 5, 8,10}, { 5, 8,13}, { 5,10, 8}, { 4,15,15}, { 5, 9,15}, { 4,15,12}, | ||
- | { 5, 9, 8}, { 4,11, 9}, { 4,12,14}, { 4,11,12}, { 4,11,14}, { 4,11, 8}, { 4,12,12}, { 4,13, 8}, | ||
- | { 4,13,10}, { 4,11,10}, { 4,15, 8}, { 4,14,10}, { 4,12,11}, { 4,12, 8}, { 4,12,13}, { 4,11,11}, | ||
- | { 4,12, 9}, { 4,14,15}, { 4,11,13}, { 4,10,15}, { 4,10,14}, { 4,13,11}, { 4,14,13}, { 4,13,13}, | ||
- | { 4,13,15}, { 4,14, 9}, { 4,15, 9}, { 5,10,14}, { 5,10, 9}, { 5,10,15}, { 5,10,10}, { 5, 9,12}, | ||
- | { 5, 9,11}, { 3, 8,12}, { 4, 9,11}, { 4, 8,12}, { 4, 8,11}, { 3, 8, 9}, { 4, 8,15}, { 4, 9, 9}, | ||
- | { 4, 8,10}, { 3, 8,13}, { 4,10,10}, { 4, 9,14}, { 4, 8, 9}, { 4, 8,14}, { 3, 8,14}, { 3, 8,11}, | ||
- | { 4, 9, 8}, { 4,10, 8}, { 3, 8,15}, { 4, 8, 8}, { 3, 8,10}, { 4, 8,13}, { 4, 9,13}, { 4, 9,12}, | ||
- | { 4, 9,15}, { 4, 9,10}, { 4,10, 9}, { 5,10,12}, { 5, 9,14}, { 5,10,12}, { 5,11, 8}, { 7,10,15}, | ||
- | { 7,11, 8}, { 7,11, 9}, { 7,11,10}, { 7,11,11}, { 7,11,12}, { 7,11,13}, { 7,11,14}, { 7,11,15}, | ||
- | { 7,12, 8}, { 7,12, 9}, { 7,12,10}, { 7,12,11}, { 7,12,12}, { 7,12,13}, { 7,12,14}, { 7,12,15}, | ||
- | { 7,13, 8}, { 7,13, 9}, { 7,13,10}, { 7,13,11}, { 7,13,12}, { 7,13,13}, { 7,13,14}, { 7,13,15}, | ||
- | { 7,14, 8}, { 7,14, 9}, { 7,14,10}, { 7,14,11}, { 7,14,12}, { 7,14,13}, { 7,14,14}, { 7,14,15}, | ||
- | { 5,11, 9}, { 5,11,10}, { 5,11,11}, { 5,11,12}, { 5,11,13}, { 5,11,14}, { 5,11,15}, { 5,12, 8}, | ||
- | { 5,12, 9}, { 5,12,10}, { 5,12,11}, { 5,12,12}, { 5,12,13}, { 5,12,14}, { 5,12,15}, { 5,13, 8}, | ||
- | { 5,13, 9}, { 5,13,10}, { 5,13,11}, { 5,13,12}, { 5,13,13}, { 5,13,14}, { 5,13,15}, { 5,14, 8}, | ||
- | { 5,14, 9}, { 5,14,10}, { 5,14,11}, { 5,14,12}, { 5,14,13}, { 5,14,14}, { 5,14,15}, { 5,15, 8}, | ||
- | { 5,15, 9}, { 5,15,10}, { 5,15,11}, { 5,15,12}, { 5,15,13}, { 5,15,14}, { 5,15,15}, { 6, 8, 8}, | ||
- | { 6, 8, 9}, { 6, 8,10}, { 6, 8,11}, { 6, 8,12}, { 6, 8,13}, { 6, 8,14}, { 6, 8,15}, { 6, 9, 8}, | ||
- | { 6, 9, 9}, { 6, 9,10}, { 6, 9,11}, { 6, 9,12}, { 6, 9,13}, { 6, 9,14}, { 6, 9,15}, { 6,10, 8}, | ||
- | { 6,10, 9}, { 6,10,10}, { 6,10,11}, { 6,10,12}, { 6,10,13}, { 6,10,14}, { 6,10,15}, { 6,11, 8}, | ||
- | { 6,11, 9}, { 6,11,10}, { 6,11,11}, { 6,11,12}, { 6,11,13}, { 6,11,14}, { 6,11,15}, { 6,12, 8}, | ||
- | { 6,12, 9}, { 6,12,10}, { 6,12,11}, { 6,12,12}, { 6,12,13}, { 6,12,14}, { 6,12,15}, { 6,13, 8}, | ||
- | { 6,13, 9}, { 6,13,10}, { 6,13,11}, { 6,13,12}, { 6,13,13}, { 6,13,14}, { 6,13,15}, { 6,14, 8}, | ||
- | { 6,14, 9}, { 6,14,10}, { 6,14,11}, { 6,14,12}, { 6,14,13}, { 6,14,14}, { 6,14,15}, { 6,15, 8}, | ||
- | }; | ||
- | uint8_t _sym = 0; | ||
- | |||
- | void setup() { | ||
- | pinMode(RADIOPIN, | ||
- | setPwmFrequency(RADIOPIN, | ||
} | } | ||
- | // the loop routine runs over and over again forever: | + | uint16_t gps_CRC16_checksum |
- | void loop() { | + | { |
- | | + | |
- | } | + | |
+ | uint8_t c; | ||
- | void dominoex_txsym(uint8_t sym) { | + | crc = 0xFFFF; |
- | _sym = (_sym + 2 + sym) % 18; | + | |
- | analogWrite(RADIOPIN, | + | |
- | delay(64); | + | |
- | } | + | |
- | void dominoex_txchar(uint16_t vcode) { | + | // Calculate checksum ignoring the first two $s |
- | | + | for (i = 2; i < strlen(string); i++) |
+ | | ||
+ | | ||
+ | crc = _crc_xmodem_update (crc, c); | ||
+ | } | ||
- | for(i = 0; i < 3; i++) { | + | return crc; |
- | c = varicode[vcode][i]; | + | } |
- | if(i && !(c & 0x8)) break; | + | </ |
- | dominoex_txsym(c); | + | |
- | | + | |
- | } | + | |
- | void dominoex_string(char *s) { | + | Upload the code and again open up [[http:// |
- | for(; *s; s++) dominoex_txchar(*s); | + | |
- | } | + | |
- | void setPwmFrequency(int pin, int divisor) { | + | Set the carrier shift to 425, baud to 50, 7 bits per character, no parity and 2 stop bits. |
- | byte mode; | + | |
- | if(pin == 5 || pin == 6 || pin == 9 || pin == 10) { | + | |
- | switch(divisor) { | + | |
- | case 1: | + | |
- | mode = 0x01; | + | |
- | break; | + | |
- | case 8: | + | |
- | mode = 0x02; | + | |
- | break; | + | |
- | case 64: | + | |
- | mode = 0x03; | + | |
- | break; | + | |
- | case 256: | + | |
- | mode = 0x04; | + | |
- | break; | + | |
- | case 1024: | + | |
- | mode = 0x05; | + | |
- | break; | + | |
- | default: | + | |
- | return; | + | |
- | } | + | |
- | if(pin == 5 || pin == 6) { | + | If everything is working ok you should get the data printing out : |
- | TCCR0B = TCCR0B & 0b11111000 | mode; | + | |
- | } | + | |
- | else { | + | |
- | TCCR1B = TCCR1B & 0b11111000 | mode; | + | |
- | } | + | |
- | } | + | |
- | else if(pin == 3 || pin == 11) { | + | |
- | switch(divisor) { | + | |
- | case 1: | + | |
- | mode = 0x01; | + | |
- | break; | + | |
- | case 8: | + | |
- | mode = 0x02; | + | |
- | break; | + | |
- | case 32: | + | |
- | mode = 0x03; | + | |
- | break; | + | |
- | case 64: | + | |
- | mode = 0x04; | + | |
- | break; | + | |
- | case 128: | + | |
- | mode = 0x05; | + | |
- | break; | + | |
- | case 256: | + | |
- | mode = 0x06; | + | |
- | break; | + | |
- | case 1024: | + | |
- | mode = 0x7; | + | |
- | break; | + | |
- | default: | + | |
- | return; | + | |
- | } | + | |
- | TCCR2B = TCCR2B & 0b11111000 | mode; | + | |
- | } | + | |
- | } | + | |
- | </ | + | |
- | Viewed in DL-FLDIGI (Click Op Mode -> DominoEX -> DominoEX16) | + | {{: |
- | {{: | + | ===== Where to buy the NTX2 ===== |
- | You can adjust the code to do DominoEX22 by amending the delay line from 64 ( 1/Baud rate so for DominoEX16 = 0.064s, DominoEX22 = 1/21.533 = 0.0464) to 46 and adjusting the resistor to ~ 100k. | + | |
- | + | ||
- | ===== Where to Buy the NTX2B ====== | + | |
- | + | ||
- | | + | |
- | *[[http:// | + | |
===== Acknowledgements ===== | ===== Acknowledgements ===== | ||
- | Thanks to Rob Harrison for the original | + | Thanks to Rob Harrison for the RTTY code and to Dave Akerman for suggesting a more sensible one pin circuit to drive the NTX2B. |
- | Article authored by Anthony Stirk M0UPU | + | Article authored by Anthony Stirk. |
- | Additional | + | Additional |
- | ===== Additional Links ===== | ||
- | |||
- | [[http:// | ||
Should you have any questions with this please come chat to us on [[ukhas: | Should you have any questions with this please come chat to us on [[ukhas: | ||
- | |||
- | ===== Amendments ===== | ||
- | |||
- | For the Leonardo : | ||
- | |||
- | Instead line: | ||
- | |||
- | TCCR1B = TCCR1B & 0b11111000 | mode; | ||
- | |||
- | should be written: | ||
- | |||
- | OCR0A = OCR0A & 0b11111000 | mode; | ||
- | |||
- | Instead line: | ||
- | |||
- | TCCR2B = TCCR2B & 0b11111000 | mode; | ||
- | |||
- | should be written: | ||
- | |||
- | TCCR0A = TCCR0A & 0b11111000 | mode; | ||
- | |||
- | Thanks to Vitaly Mechinsky for the update. | ||
- |
guides/linkingarduinotontx2.1457514038.txt.gz · Last modified: 2016/03/09 09:00 by upu