update DTMF tx and rx

This commit is contained in:
Morgan Redfield 2019-06-01 18:09:15 -07:00
parent 6472b103b4
commit 71acbbb975
1 changed files with 14 additions and 7 deletions

View File

@ -72,7 +72,7 @@ void setup() {
//radio.setSQOff();
Serial.println("setting frequency to: ");
freq = 420000;
freq = 432250;
radio.frequency(freq);
Serial.print(radio.getFrequency());
Serial.println("kHz");
@ -119,9 +119,13 @@ void loop() {
while (j < 4) {
if (radio.getDTMFSample() == 0) {
j++;
} else {
j = 1;
}
delay(10);
}
// reset read
//radio.enableDTMFReceive();
} else if (rx_dtmf_idx > 0) {
rx_dtmf_buf[rx_dtmf_idx] = '\0'; // NULL terminate the string
Serial.println(rx_dtmf_buf);
@ -130,6 +134,7 @@ void loop() {
// Is it time to send tone?
if (Serial.available()) {
// get first code
uint8_t code = char2code(Serial.read());
// start transmitting
@ -145,18 +150,20 @@ void loop() {
// wait until we're ready for a new code
delay(10);
}
while (radio.getDTMFTxActive() != 0) {
// wait until this code is done
delay(10);
}
if (Serial.available()) {
code = char2code(Serial.read());
if (code == 255) code = 0xE; // throw a * in there so we don't break things with an invalid code
radio.setDTMFCode(code); // set first
} else {
dtmf_to_tx = false;
break;
}
while (radio.getDTMFTxActive() != 0) {
// wait until this code is done
delay(10);
}
}
// done with tone
radio.setModeReceive();