blob: 9e461f2c1833b9a0e18031fb849117898686d36c [file] [log] [blame]
Alex Badeaab1246e2010-11-27 23:35:08 +02001#ifndef PROTO_GSM_03_41_H
2#define PROTO_GSM_03_41_H
3
4#include <stdint.h>
5
Holger Hans Peter Freythera1e8bf72010-12-29 12:00:01 +01006/* GSM TS 03.41 definitions also TS 23.041*/
Alex Badeaab1246e2010-11-27 23:35:08 +02007
8/* Chapter 9.3.2 */
9struct gsm341_ms_message {
10 struct {
11 uint8_t code_hi:6;
12 uint8_t gs:2;
Holger Hans Peter Freythera1e8bf72010-12-29 12:00:01 +010013 uint8_t update:4;
14 uint8_t code_lo:4;
Alex Badeaab1246e2010-11-27 23:35:08 +020015 } serial;
16 uint16_t msg_id;
17 struct {
18 uint8_t language:4;
19 uint8_t group:4;
20 } dcs;
21 struct {
22 uint8_t total:4;
23 uint8_t current:4;
24 } page;
25 uint8_t data[0];
26} __attribute__((packed));
27
Holger Hans Peter Freythere05c7df2010-12-29 11:57:48 +010028#define GSM341_MSG_CODE(ms) (ms->serial.code_lo | (msg->serial.code_hi << 4))
29
Alex Badeaab1246e2010-11-27 23:35:08 +020030/* Section 9.3.2.1 - Geographical Scope */
31#define GSM341_GS_CELL_WIDE_IMMED 0
32#define GSM341_GS_PLMN_WIDE 1
33#define GSM341_GS_LA_WIDE 2
34#define GSM341_GS_CELL_WIDE 3
35
36#endif /* PROTO_GSM_03_41_H */