@@ -271,13 +271,13 @@ const SpektrumSensor spektrumSensors[] = {
271
271
// SS(0x38, 0, uint16, STR_SENSOR_PRESSSURE, UNIT_PSI, 1),
272
272
273
273
// 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)
281
281
282
282
// 0x40 Vario-S
283
283
SS (I2C_VARIO, 0 , int16, STR_SENSOR_ALT, UNIT_METERS, 1 ),
@@ -672,6 +672,12 @@ void processSpektrumPacket(const uint8_t *packet)
672
672
continue ; // discard unavailable sensors (farzu: i think might not be needed.. previous validation)
673
673
} else {
674
674
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
+ }
675
681
}
676
682
} // I2C_SMART_BAT_REALTIME
677
683
@@ -690,14 +696,14 @@ void processSpektrumPacket(const uint8_t *packet)
690
696
}
691
697
} // I2C_ESC
692
698
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
+ }
701
707
// Continue to process regular Single Cell value
702
708
} // I2C_CELLS
703
709
@@ -1138,13 +1144,13 @@ static char test17data[] = {0x17, 0x00, 0x25, 0x00, 0x00,
1138
1144
static char test34data[] = {0x34 , 0x00 , 0x2F , 0x00 , 0x30 , 0x09 , 0x85 , 0x01 ,
1139
1145
0x2B , 0x00 , 0x07 , 0x0A , 0x81 , 0x01 };
1140
1146
1141
- // *********** Lipo monitor (Big -Endian)***************
1147
+ // *********** Lipo monitor (Little -Endian)***************
1142
1148
// Example 0x3A: 0 1 2 3 4 5 6 7 8 9 10 11 12 13
1143
1149
// 3A 00 | 01 9A | 01 9B | 01 9C | 01 9D | 7F FF | 7F FF | 0F AC
1144
1150
// 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 };
1148
1154
1149
1155
1150
1156
// RemoteID (0x27), embeds Gps data in its frames, but by puting the real I2C frame
0 commit comments