several HMS / HMT related changes

This commit is contained in:
lumapu 2023-04-21 00:17:17 +02:00
parent 4fd93be575
commit b8533cc17d
10 changed files with 204 additions and 47 deletions

View file

@ -445,6 +445,12 @@ class Inverter {
}
channels = 4;
}
else if (INV_TYPE_6CH == type) {
rec->length = (uint8_t)(HMT6CH_LIST_LEN);
rec->assign = (byteAssign_t *)hmt6chAssignment;
rec->pyldLen = HMT6CH_PAYLOAD_LEN;
channels = 6;
}
else {
rec->length = 0;
rec->assign = NULL;