Skip to content

Commit 810a20f

Browse files
frankiearzupfeerick
authored andcommitted
fix(tele): DSM LIPO 6S sensor endian order (#6014)
1 parent 396f599 commit 810a20f

File tree

1 file changed

+25
-19
lines changed

1 file changed

+25
-19
lines changed

radio/src/telemetry/spektrum.cpp

+25-19
Original file line numberDiff line numberDiff line change
@@ -271,13 +271,13 @@ const SpektrumSensor spektrumSensors[] = {
271271
//SS(0x38, 0, uint16, STR_SENSOR_PRESSSURE, UNIT_PSI, 1),
272272

273273
// 0x3A Lipo 6s Monitor Cells
274-
SS(I2C_CELLS, 0, uint16, STR_SENSOR_CL01, UNIT_VOLTS, 2), // Voltage across cell 1, .01V steps
275-
SS(I2C_CELLS, 2, uint16, STR_SENSOR_CL02, UNIT_VOLTS, 2),
276-
SS(I2C_CELLS, 4, uint16, STR_SENSOR_CL03, UNIT_VOLTS, 2),
277-
SS(I2C_CELLS, 6, uint16, STR_SENSOR_CL04, UNIT_VOLTS, 2),
278-
SS(I2C_CELLS, 8, uint16, STR_SENSOR_CL05, UNIT_VOLTS, 2),
279-
SS(I2C_CELLS, 10, uint16, STR_SENSOR_CL06, UNIT_VOLTS, 2),
280-
SS(I2C_CELLS, 12, uint16, STR_SENSOR_TEMP2, UNIT_CELSIUS, 1), // Temperature, 0.1C (0-655.34C)
274+
SS(I2C_CELLS, 0, uint16le, STR_SENSOR_CL01, UNIT_VOLTS, 2), // Voltage across cell 1, .01V steps
275+
SS(I2C_CELLS, 2, uint16le, STR_SENSOR_CL02, UNIT_VOLTS, 2),
276+
SS(I2C_CELLS, 4, uint16le, STR_SENSOR_CL03, UNIT_VOLTS, 2),
277+
SS(I2C_CELLS, 6, uint16le, STR_SENSOR_CL04, UNIT_VOLTS, 2),
278+
SS(I2C_CELLS, 8, uint16le, STR_SENSOR_CL05, UNIT_VOLTS, 2),
279+
SS(I2C_CELLS, 10, uint16le, STR_SENSOR_CL06, UNIT_VOLTS, 2),
280+
SS(I2C_CELLS, 12, uint16le, STR_SENSOR_TEMP2, UNIT_CELSIUS, 1), // Temperature, 0.1C (0-655.34C)
281281

282282
// 0x40 Vario-S
283283
SS(I2C_VARIO, 0, int16, STR_SENSOR_ALT, UNIT_METERS, 1),
@@ -672,6 +672,12 @@ void processSpektrumPacket(const uint8_t *packet)
672672
continue; // discard unavailable sensors (farzu: i think might not be needed.. previous validation)
673673
} else {
674674
value = value / 10;
675+
if (i2cAddress == I2C_SMART_BAT_CELLS_1_6) {
676+
// Map to FrSky style cell values (All Cells in a single Sensor)
677+
int cellIndex = ((sensor->startByte-2) / 2) << 16; // First cell is at StartByte 2
678+
uint32_t valueCells = cellIndex | value;
679+
setTelemetryValue(PROTOCOL_TELEMETRY_SPEKTRUM, I2C_PSEUDO_TX_CELLS, 0, instance, valueCells, UNIT_CELLS, 2);
680+
}
675681
}
676682
} // I2C_SMART_BAT_REALTIME
677683

@@ -690,14 +696,14 @@ void processSpektrumPacket(const uint8_t *packet)
690696
}
691697
} // I2C_ESC
692698

693-
else if (i2cAddress == I2C_CELLS && sensor->unit == UNIT_VOLTS) {
694-
if (value == 0x7FFF) continue; // ignore NO-DATA
695-
696-
// Map to FrSky style cell values (All Cells in a single Sensor)
697-
int cellIndex = (sensor->startByte / 2) << 16;
698-
uint32_t valueCells = cellIndex | value;
699-
setTelemetryValue(PROTOCOL_TELEMETRY_SPEKTRUM, I2C_PSEUDO_TX_CELLS, 0, instance, valueCells, UNIT_CELLS, 2);
700-
699+
else if (i2cAddress == I2C_CELLS) {
700+
if (value == 0x7FFF) continue; // ignore NO-DATA for Voltage and Temp
701+
if (sensor->unit == UNIT_VOLTS) {
702+
// Map to FrSky style cell values (All Cells in a single Sensor)
703+
int cellIndex = (sensor->startByte / 2) << 16; // First Cell is at startByte 0
704+
uint32_t valueCells = cellIndex | value;
705+
setTelemetryValue(PROTOCOL_TELEMETRY_SPEKTRUM, I2C_PSEUDO_TX_CELLS, 0, instance, valueCells, UNIT_CELLS, 2);
706+
}
701707
// Continue to process regular Single Cell value
702708
} // I2C_CELLS
703709

@@ -1138,13 +1144,13 @@ static char test17data[] = {0x17, 0x00, 0x25, 0x00, 0x00,
11381144
static char test34data[] = {0x34, 0x00, 0x2F, 0x00, 0x30, 0x09, 0x85, 0x01,
11391145
0x2B, 0x00, 0x07, 0x0A, 0x81, 0x01 };
11401146

1141-
// *********** Lipo monitor (Big-Endian)***************
1147+
// *********** Lipo monitor (Little-Endian)***************
11421148
// Example 0x3A: 0 1 2 3 4 5 6 7 8 9 10 11 12 13
11431149
// 3A 00 | 01 9A | 01 9B | 01 9C | 01 9D | 7F FF | 7F FF | 0F AC
11441150
// 4.10V 4.11V 4.12V 4.12v -- -- 40.1C
1145-
static char test3Adata[] = {0x3A, 0x00, 0x01, 0x9A, 0x01, 0x9B, 0x01, 0x9C,
1146-
0x01, 0x9D, 0x7F, 0xFF, 0x7F, 0xFF,
1147-
0x01, 0x91 };
1151+
static char test3Adata[] = {0x3A, 0x00, 0x9A, 0x01, 0x9B, 0x01, 0x9C, 0x01,
1152+
0x9D, 0x01, 0x7F, 0xFF, 0x7F, 0xFF,
1153+
0x91, 0x01 };
11481154

11491155

11501156
// RemoteID (0x27), embeds Gps data in its frames, but by puting the real I2C frame

0 commit comments

Comments
 (0)