libosmogsm
1.6.0
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
7
struct
gsm_sacch_l1_hdr
{
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));
gsm_sacch_l1_hdr
Definition:
gsm_44_004.h:7
endian.h
__attribute__
struct gsm_sacch_l1_hdr __attribute__((packed))
include
osmocom
gsm
protocol
gsm_44_004.h
Generated by
1.8.13