Float does not appear to have enough precision for the calculation
This commit is contained in:
parent
f3ddcce744
commit
bce9840cb1
1 changed files with 2 additions and 2 deletions
|
@ -150,8 +150,8 @@ void CAPRSWriter::sendIdFrames()
|
|||
char desc[100U];
|
||||
if (m_txFrequency != 0U) {
|
||||
float offset = float(int(m_rxFrequency) - int(m_txFrequency)) / 1000000.0F;
|
||||
::sprintf(desc, "MMDVM Voice %.5lfMHz %c%.4lfMHz",
|
||||
float(m_txFrequency) / 1000000.0F,
|
||||
::sprintf(desc, "MMDVM Voice %.5LfMHz %c%.4lfMHz",
|
||||
float(m_txFrequency) / 1000000.0L,
|
||||
offset < 0.0F ? '-' : '+',
|
||||
::fabs(offset));
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue