mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-07 16:38:30 -04:00
6b583869c0
the string was backwards
25 lines
410 B
C
25 lines
410 B
C
#include <stdio.h>
|
|
|
|
char * __ultoa_invert(unsigned long val, char *s, int base)
|
|
{
|
|
char tbuf[32];
|
|
char *p;
|
|
switch (base) {
|
|
case 8:
|
|
snprintf(tbuf, sizeof(tbuf), "%lo", val);
|
|
break;
|
|
case 16:
|
|
snprintf(tbuf, sizeof(tbuf), "%lx", val);
|
|
break;
|
|
case 10:
|
|
default:
|
|
snprintf(tbuf, sizeof(tbuf), "%lu", val);
|
|
break;
|
|
}
|
|
p = &tbuf[strlen(tbuf)-1];
|
|
while (p >= &tbuf[0]) {
|
|
*s++ = *p--;
|
|
}
|
|
return s;
|
|
}
|