Hi,
We have to send data to the gateway in 869.5 MHz. Following code has been used for this operation.
logInfo("setting Frequency");
if ((ret = dot->setTxFrequency(869500000)) != mDot::MDOT_OK) {
logError("failed to set freq %d:%s", ret, mDot::getReturnCodeString(ret).c_str());
}
It seems OK but when the device tries to join the network it is unsuccessful.
When we comment these line, joining the network is successful.
Where is the problem? Is it possible to set a certain transmission frequency for mDot (In AT Command reference it is stated that it can be used in peer-to-peer mode)?
Regards