FreeCalypso > hg > freecalypso-tools
view uptools/libcoding/hexdecode.c @ 752:c79aaed75bd8
compile-fc-batt: allow possible third field in source lines
Battery tables maintained in the fc-battery-conf repository will now
have a third field added, defining thresholds for the battery bars icon,
and there will be a new utility to compile them into the new
/etc/batterytab2 file read by the FC Tourmaline version of our
FCHG driver. For backward compatibility with the original Magnetite
version of FCHG, compile-fc-batt remains the tool for compiling the
original /etc/batterytab file format, and it needs to ignore the
newly added third field in battery table sources.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Nov 2020 20:37:55 +0000 |
parents | 18c692984549 |
children |
line wrap: on
line source
/* * This library module implements decoding of long hex strings, * such as SMS PDUs. */ #include <sys/types.h> #include <ctype.h> decode_hex_line(inbuf, outbuf, outmax) char *inbuf; u_char *outbuf; unsigned outmax; { char *inp = inbuf; u_char *outp = outbuf; unsigned outcnt = 0; int c, d[2], i; while (*inp) { if (!isxdigit(inp[0]) || !isxdigit(inp[1])) return(-1); if (outcnt >= outmax) break; for (i = 0; i < 2; i++) { c = *inp++; if (isdigit(c)) d[i] = c - '0'; else if (isupper(c)) d[i] = c - 'A' + 10; else d[i] = c - 'a' + 10; } *outp++ = (d[0] << 4) | d[1]; outcnt++; } return outcnt; }