Merge pull request #633 from on7lds/dev
change tx and rx frequency display precision (to reflect ini file significant figures)
This commit is contained in:
commit
f71c8ce7bc
2 changed files with 6 additions and 6 deletions
|
@ -121,8 +121,8 @@ bool CNextion::open()
|
|||
sendCommand("bkcmd=0");
|
||||
sendCommandAction(0U);
|
||||
|
||||
m_fl_txFrequency = float(m_txFrequency) / 1000000.0F;
|
||||
m_fl_rxFrequency = float(m_rxFrequency) / 1000000.0F;
|
||||
m_fl_txFrequency = double(m_txFrequency) / 1000000.0F;
|
||||
m_fl_rxFrequency = double(m_rxFrequency) / 1000000.0F;
|
||||
|
||||
setIdle();
|
||||
|
||||
|
@ -152,11 +152,11 @@ void CNextion::setIdleInt()
|
|||
sendCommand(command);
|
||||
sendCommandAction(17U);
|
||||
|
||||
::sprintf(command, "t30.txt=\"%3.4f\"",m_fl_rxFrequency); // RX freq
|
||||
::sprintf(command, "t30.txt=\"%3.6f\"",m_fl_rxFrequency); // RX freq
|
||||
sendCommand(command);
|
||||
sendCommandAction(20U);
|
||||
|
||||
::sprintf(command, "t32.txt=\"%3.4f\"",m_fl_txFrequency); // TX freq
|
||||
::sprintf(command, "t32.txt=\"%3.6f\"",m_fl_txFrequency); // TX freq
|
||||
sendCommand(command);
|
||||
sendCommandAction(21U);
|
||||
|
||||
|
|
|
@ -100,8 +100,8 @@ private:
|
|||
unsigned int m_berCount2;
|
||||
unsigned int m_txFrequency;
|
||||
unsigned int m_rxFrequency;
|
||||
float m_fl_txFrequency;
|
||||
float m_fl_rxFrequency;
|
||||
double m_fl_txFrequency;
|
||||
double m_fl_rxFrequency;
|
||||
bool m_displayTempInF;
|
||||
std::string m_location;
|
||||
|
||||
|
|
Loading…
Reference in a new issue