@@ -832,7 +832,7 @@ void CNextion::writeM17Int(const char* source, const char* dest, const char* typ
832
832
833
833
if (m_mode != MODE_M17) {
834
834
sendCommand (" page M17" );
835
- sendCommandAction (6U );
835
+ sendCommandAction (8U );
836
836
}
837
837
838
838
char text[30U ];
@@ -843,11 +843,11 @@ void CNextion::writeM17Int(const char* source, const char* dest, const char* typ
843
843
844
844
::sprintf (text, " t0.txt=\" %s %.10s\" " , type, source);
845
845
sendCommand (text);
846
- sendCommandAction (122U );
846
+ sendCommandAction (142U );
847
847
848
848
::sprintf (text, " t1.txt=\" %s\" " , dest);
849
849
sendCommand (text);
850
- sendCommandAction (123U );
850
+ sendCommandAction (143U );
851
851
852
852
m_clockDisplayTimer.stop ();
853
853
@@ -867,7 +867,7 @@ void CNextion::writeM17RSSIInt(unsigned char rssi)
867
867
char text[25U ];
868
868
::sprintf (text, " t2.txt=\" -%udBm\" " , m_rssiAccum1 / M17_RSSI_COUNT);
869
869
sendCommand (text);
870
- sendCommandAction (124U );
870
+ sendCommandAction (144U );
871
871
m_rssiAccum1 = 0U ;
872
872
m_rssiCount1 = 0U ;
873
873
}
@@ -882,7 +882,7 @@ void CNextion::writeM17BERInt(float ber)
882
882
char text[25U ];
883
883
::sprintf (text, " t3.txt=\" %.1f%%\" " , m_berAccum1 / float (M17_BER_COUNT));
884
884
sendCommand (text);
885
- sendCommandAction (125U );
885
+ sendCommandAction (145U );
886
886
m_berAccum1 = 0 .0F ;
887
887
m_berCount1 = 0U ;
888
888
}
@@ -891,7 +891,7 @@ void CNextion::writeM17BERInt(float ber)
891
891
void CNextion::clearM17Int ()
892
892
{
893
893
sendCommand (" t0.txt=\" Listening\" " );
894
- sendCommandAction (121U );
894
+ sendCommandAction (141U );
895
895
sendCommand (" t1.txt=\"\" " );
896
896
sendCommand (" t2.txt=\"\" " );
897
897
sendCommand (" t3.txt=\"\" " );
0 commit comments