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