Browse Source

Typos

pull/1095/head
rejoe2 1 year ago
committed by GitHub
parent
commit
670da7cf82
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      src/hm/hmInverter.h

9
src/hm/hmInverter.h

@ -487,7 +487,8 @@ class Inverter {
rec->pyldLen = HMS1CH_PAYLOAD_LEN; rec->pyldLen = HMS1CH_PAYLOAD_LEN;
} else if(IV_MI == ivGen) { } else if(IV_MI == ivGen) {
rec->length = (uint8_t)(HM1CH_LIST_LEN); rec->length = (uint8_t)(HM1CH_LIST_LEN);
rec->assign = (byteAssign_t *)hm1chAssignment;} rec->assign = (byteAssign_t *)hm1chAssignment;
}
channels = 1; channels = 1;
} }
else if (INV_TYPE_2CH == type) { else if (INV_TYPE_2CH == type) {
@ -501,7 +502,8 @@ class Inverter {
rec->pyldLen = HMS2CH_PAYLOAD_LEN; rec->pyldLen = HMS2CH_PAYLOAD_LEN;
} else if(IV_MI == ivGen) { } else if(IV_MI == ivGen) {
rec->length = (uint8_t)(HM1CH_LIST_LEN); rec->length = (uint8_t)(HM1CH_LIST_LEN);
rec->assign = (byteAssign_t *)hm2chAssignment; } rec->assign = (byteAssign_t *)hm2chAssignment;
}
channels = 2; channels = 2;
} }
else if (INV_TYPE_4CH == type) { else if (INV_TYPE_4CH == type) {
@ -515,7 +517,8 @@ class Inverter {
rec->pyldLen = HMS4CH_PAYLOAD_LEN; rec->pyldLen = HMS4CH_PAYLOAD_LEN;
} else if(IV_MI == ivGen) { } else if(IV_MI == ivGen) {
rec->length = (uint8_t)(HM1CH_LIST_LEN); rec->length = (uint8_t)(HM1CH_LIST_LEN);
rec->assign = (byteAssign_t *)hm4chAssignment; } rec->assign = (byteAssign_t *)hm4chAssignment;
}
channels = 4; channels = 4;
} }
else if (INV_TYPE_6CH == type) { else if (INV_TYPE_6CH == type) {

Loading…
Cancel
Save