FreeCalypso > hg > freecalypso-tools
annotate uptools/libcoding/gsmtime.c @ 926:6a0aa8d36d06
rvinterf backslash escape: introduce libprint
The new helper function library named libprint is meant to replace
the badly misnamed libg23, and will soon contain functions for
printing all of the same kinds of GPF TST packets that are now handled
in libg23. However, we are also moving safe_print_trace() from libasync
to this new library, and changing it to emit our new backslash escape
format.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Tue, 23 May 2023 03:47:46 +0000 |
| parents | f40530e2d48d |
| children |
| rev | line source |
|---|---|
|
334
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 /* |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 * This library module implements decoding of GSM timestamps. |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 */ |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 #include <sys/types.h> |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 #include <stdio.h> |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 gsm_timestamp_decode(inbuf, outbuf) |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 u_char *inbuf; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 char *outbuf; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 { |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 u_char rev[7]; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 int i, d1, d2, tzsign; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 for (i = 0; i < 7; i++) { |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 d1 = inbuf[i] & 0xF; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 d2 = inbuf[i] >> 4; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 rev[i] = (d1 << 4) | d2; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 } |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 if (rev[6] & 0x80) { |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 rev[6] &= 0x7F; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 tzsign = '-'; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 } else |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
24 tzsign = '+'; |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
25 sprintf(outbuf, "%02X/%02X/%02X,%02X:%02X:%02X%c%02X", rev[0], rev[1], |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 rev[2], rev[3], rev[4], rev[5], tzsign, rev[6]); |
|
f40530e2d48d
uptools/libcoding: GSM timestamp decoding implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
27 } |
