Skip to content

Commit 6fbd123

Browse files
committed
fix 32 bit mode
1 parent 5004513 commit 6fbd123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hardware/SatelIntegra.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ bool SatelIntegra::GetInfo()
354354
cmd[0] = 0x7C; // INT-RS/ETHM version
355355
if (SendCommand(cmd, 1, buffer, 13) > 0)
356356
{
357-
m_data32 = ((buffer[12] & 3) == 1) && (m_modelIndex == 72); // supported and required 256 PLUS
357+
m_data32 = ((buffer[12] & 2) == 2) && (m_modelIndex == 72); // supported and required 256 PLUS
358358

359359
_log.Log(LOG_STATUS, "Satel Integra: ETHM-1 ver. %c.%c%c %c%c%c%c-%c%c-%c%c (32 bytes mode = %s)",
360360
buffer[1], buffer[2], buffer[3], buffer[4], buffer[5], buffer[6], buffer[7], buffer[8], buffer[9], buffer[10], buffer[11], m_data32 ? "true" : "false");

0 commit comments

Comments
 (0)