Skip to content

Commit b33c5af

Browse files
authored
Add MRK_S36C condition for resistance calculation
1 parent d12bd17 commit b33c5af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/devices/ftmsbike/ftmsbike.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ void ftmsbike::forceResistance(resistance_t requestResistance) {
354354
QStringLiteral("forceResistance ") + QString::number(requestResistance));
355355
} else {
356356
uint8_t write[] = {FTMS_SET_TARGET_RESISTANCE_LEVEL, 0x00};
357-
if(_3G_Cardio_RB || SL010)
357+
if(_3G_Cardio_RB || SL010 || MRK_S36C)
358358
requestResistance = requestResistance * 10;
359359
write[1] = ((uint8_t)(requestResistance));
360360
writeCharacteristic(write, sizeof(write),

0 commit comments

Comments
 (0)