mirror of
https://github.com/brmlab/osmo-tetra.git
synced 2025-06-10 02:44:05 +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
17
src/tetra_mle_pdu.h
Normal file
17
src/tetra_mle_pdu.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef TETRA_MLE_PDU_H
|
||||
#define TETRA_MLE_PDU_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/* 18.5.21 */
|
||||
enum tetra_mle_pdisc {
|
||||
TMLE_PDISC_MM = 1,
|
||||
TMLE_PDISC_CMCE = 2,
|
||||
TMLE_PDISC_SNDCP = 4,
|
||||
TMLE_PDUSC_MLE = 5,
|
||||
TMLE_PDISC_MGMT = 6,
|
||||
TMLE_PDISC_TEST = 7,
|
||||
};
|
||||
const char *tetra_get_mle_pdisc_name(uint8_t pdisc);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue