mirror of
https://github.com/brmlab/osmo-tetra.git
synced 2025-06-08 18:04:12 +02:00
initial import of Osmocom TETRA phy and lower MAC code
This commit is contained in:
parent
a4c4e5a1ab
commit
7ee08faee0
45 changed files with 4217 additions and 0 deletions
19
src/osmo_prim.h
Normal file
19
src/osmo_prim.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef OSMO_PRIMITIVE_H
|
||||
#define OSMO_PRIMITIVE_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
enum osmo_prim_operation {
|
||||
PRIM_OP_REQUEST,
|
||||
PRIM_OP_RESPONSE,
|
||||
PRIM_OP_INDICATION,
|
||||
PRIM_OP_CONFIRM,
|
||||
};
|
||||
|
||||
struct osmo_prim_hdr {
|
||||
uint16_t sap;
|
||||
uint16_t primitive;
|
||||
enum osmo_prim_operation operation;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue