Rescale the FM calibration output.

This commit is contained in:
Jonathan Naylor 2020-05-10 17:31:21 +01:00
parent 66ea3ad0d1
commit d0062a55f8
1 changed files with 8 additions and 8 deletions

View File

@ -41,7 +41,7 @@ CCalFM::CCalFM() :
m_frequency(0), m_frequency(0),
m_length(0), m_length(0),
m_tone(NULL), m_tone(NULL),
m_level(128*32), m_level(128 * 12),
m_transmit(false), m_transmit(false),
m_audioSeq(0), m_audioSeq(0),
m_lastState(STATE_IDLE) m_lastState(STATE_IDLE)
@ -74,7 +74,7 @@ void CCalFM::process()
m_frequency = 2495U; m_frequency = 2495U;
break; break;
default: default:
m_frequency=0; m_frequency = 0U;
break; break;
} }