initial import of Osmocom TETRA phy and lower MAC code

This commit is contained in:
Harald Welte 2011-01-19 10:39:59 +01:00
parent a4c4e5a1ab
commit 7ee08faee0
45 changed files with 4217 additions and 0 deletions

13
src/tetra_gsmtap.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef TETRA_GSMTAP_H
#define TETRA_GSMTAP_H
#include "tetra_common.h"
struct msgb *tetra_gsmtap_makemsg(struct tetra_tdma_time *tm, enum tetra_log_chan lchan,
uint8_t ts, uint8_t ss, int8_t signal_dbm,
uint8_t snr, const uint8_t *data, unsigned int len);
int tetra_gsmtap_sendmsg(struct msgb *msg);
int tetra_gsmtap_init(const char *host, uint16_t port);
#endif