summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/trxcon.h
blob: 9a0792bfbe4f158764ffd31fa8064403fc18cd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#define GEN_MASK(state) (0x01 << state)

extern struct osmo_fsm_inst *trxcon_fsm;
extern struct gsmtap_inst *gsmtap;

enum trxcon_fsm_states {
	TRXCON_STATE_IDLE = 0,
	TRXCON_STATE_MANAGED,
};

enum trxcon_fsm_events {
	/* L1CTL specific events */
	L1CTL_EVENT_CONNECT,
	L1CTL_EVENT_DISCONNECT,

	/* TRX specific events */
	TRX_EVENT_RSP_ERROR,
	TRX_EVENT_OFFLINE,
};