This commit is contained in:
parent
6d388fe7ae
commit
85bc9ac003
1 changed files with 3 additions and 2 deletions
|
@ -33,7 +33,9 @@ void setup()
|
||||||
|
|
||||||
Serial.println("starting up modem");
|
Serial.println("starting up modem");
|
||||||
float bitrate = globcfg.tx_baud / 1000.0;
|
float bitrate = globcfg.tx_baud / 1000.0;
|
||||||
int state = radio.beginFSK(globcfg.tx_freq, bitrate, globcfg.tx_dev);
|
float freq = globcfg.tx_freq + (float)((float)globcfg.tx_tune / 1000.0);
|
||||||
|
Serial.printf("tuned to %0.6f\n", freq);
|
||||||
|
int state = radio.beginFSK(freq, bitrate, globcfg.tx_dev);
|
||||||
if (state == 0) {
|
if (state == 0) {
|
||||||
Serial.println(F("success!"));
|
Serial.println(F("success!"));
|
||||||
} else {
|
} else {
|
||||||
|
@ -42,7 +44,6 @@ void setup()
|
||||||
#ifdef SMART_POC_DISPLAY
|
#ifdef SMART_POC_DISPLAY
|
||||||
display_update_state("modem fail");
|
display_update_state("modem fail");
|
||||||
#endif
|
#endif
|
||||||
// TODO: add solution to this
|
|
||||||
while (true) {
|
while (true) {
|
||||||
digitalWrite(PIN_LED, HIGH);
|
digitalWrite(PIN_LED, HIGH);
|
||||||
delay(850);
|
delay(850);
|
||||||
|
|
Loading…
Add table
Reference in a new issue