Skip to content

Commit

Permalink
#15 add support for dongle only
Browse files Browse the repository at this point in the history
  • Loading branch information
F4FXL committed Dec 26, 2023
1 parent 7a485a8 commit fe6da9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DStarGateway/DStarGatewayConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ bool CDStarGatewayConfig::loadRepeaters(const CConfig & cfg)
else if(reconnect == "fixed") repeater->reflectorReconnect = RECONNECT_FIXED;
}

ret = cfg.getValue(section, "frequency", repeater->frequency, 0.1, 1500.0, 434.0) && ret;
ret = cfg.getValue(section, "frequency", repeater->frequency, 0.0, 1500.0, 434.0) && ret;
ret = cfg.getValue(section, "offset", repeater->offset, -50.0, 50.0, 0.0) && ret;
ret = cfg.getValue(section, "rangeKm", repeater->range, 0.0, 3000.0, 0.0) && ret;
ret = cfg.getValue(section, "latitude", repeater->latitude, -90.0, 90.0, m_gateway.latitude) && ret;
Expand Down

0 comments on commit fe6da9f

Please sign in to comment.