libosmogsm  1.5.1
Osmocom GSM library
gsm_44_004.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <osmocom/core/endian.h>
4 
5 /* TS 44.004 Section 7.1 */
6 
8 #if OSMO_IS_BIG_ENDIAN
9  uint8_t reserved:1,
10  srr_sro:1,
11  fpc_epc:1,
12  ms_pwr:5;
13  uint8_t ta;
14 #elif OSMO_IS_LITTLE_ENDIAN
15  uint8_t ms_pwr:5,
16  fpc_epc:1,
17  srr_sro:1,
18  reserved:1;
19  uint8_t ta;
20 #endif
21 } __attribute__ ((packed));
struct gsm_sacch_l1_hdr __attribute__((packed))
Definition: gsm_44_004.h:7