Skip to content

Commit af8d1f4

Browse files
authored
These Are Conflict Changes - Proposed AG4OJ
Please over look these changes to help stabilize the new M17 Mode additions.
1 parent b1d5973 commit af8d1f4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Nextion.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ void CNextion::writeM17Int(const char* source, const char* dest, const char* typ
832832

833833
if (m_mode != MODE_M17) {
834834
sendCommand("page M17");
835-
sendCommandAction(6U);
835+
sendCommandAction(8U);
836836
}
837837

838838
char text[30U];
@@ -843,11 +843,11 @@ void CNextion::writeM17Int(const char* source, const char* dest, const char* typ
843843

844844
::sprintf(text, "t0.txt=\"%s %.10s\"", type, source);
845845
sendCommand(text);
846-
sendCommandAction(122U);
846+
sendCommandAction(142U);
847847

848848
::sprintf(text, "t1.txt=\"%s\"", dest);
849849
sendCommand(text);
850-
sendCommandAction(123U);
850+
sendCommandAction(143U);
851851

852852
m_clockDisplayTimer.stop();
853853

@@ -867,7 +867,7 @@ void CNextion::writeM17RSSIInt(unsigned char rssi)
867867
char text[25U];
868868
::sprintf(text, "t2.txt=\"-%udBm\"", m_rssiAccum1 / M17_RSSI_COUNT);
869869
sendCommand(text);
870-
sendCommandAction(124U);
870+
sendCommandAction(144U);
871871
m_rssiAccum1 = 0U;
872872
m_rssiCount1 = 0U;
873873
}
@@ -882,7 +882,7 @@ void CNextion::writeM17BERInt(float ber)
882882
char text[25U];
883883
::sprintf(text, "t3.txt=\"%.1f%%\"", m_berAccum1 / float(M17_BER_COUNT));
884884
sendCommand(text);
885-
sendCommandAction(125U);
885+
sendCommandAction(145U);
886886
m_berAccum1 = 0.0F;
887887
m_berCount1 = 0U;
888888
}
@@ -891,7 +891,7 @@ void CNextion::writeM17BERInt(float ber)
891891
void CNextion::clearM17Int()
892892
{
893893
sendCommand("t0.txt=\"Listening\"");
894-
sendCommandAction(121U);
894+
sendCommandAction(141U);
895895
sendCommand("t1.txt=\"\"");
896896
sendCommand("t2.txt=\"\"");
897897
sendCommand("t3.txt=\"\"");

0 commit comments

Comments
 (0)