mirror of
https://github.com/opentx/opentx.git
synced 2025-07-14 03:49:52 +03:00
Multi improvements (#5322)
* implementing syncing with multi * Send config command * Implement setting failsafe for multimodule * Fix * Fix last bugs. Multi sync now working as expected. * Add eww multi protocol
This commit is contained in:
parent
8e9d370770
commit
613b2edf49
24 changed files with 409 additions and 130 deletions
|
@ -409,7 +409,7 @@ char * strAppendUnsigned(char * dest, uint32_t value, uint8_t digits, uint8_t ra
|
|||
if (digits == 0) {
|
||||
unsigned int tmp = value;
|
||||
digits = 1;
|
||||
while (tmp >= 10) {
|
||||
while (tmp >= radix) {
|
||||
++digits;
|
||||
tmp /= radix;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue