kopia lustrzana https://github.com/pjalocha/esp32-ogn-tracker
Fixed bug with Format_HexBytes()
rodzic
9d331638cf
commit
f8f7060dd6
|
@ -194,7 +194,7 @@ uint8_t Format_Hex( char *Output, uint8_t Byte )
|
|||
uint8_t Format_HexBytes(char *Output, const uint8_t *Byte, uint8_t Bytes)
|
||||
{ uint8_t Len=0;
|
||||
for(uint8_t Idx=0; Idx<Bytes; Idx++)
|
||||
Len+=Format_Hex(Output, Byte[Idx]);
|
||||
Len+=Format_Hex(Output+Len, Byte[Idx]);
|
||||
return Len; }
|
||||
|
||||
uint8_t Format_Hex( char *Output, uint16_t Word )
|
||||
|
|
Ładowanie…
Reference in New Issue