From 8ade45e795d1ee531423d529dfa2c441ece1196a Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Thu, 23 Jan 2014 16:00:11 +0100 Subject: handover: Set basic values for handover, remember the activation reason Introduce the handover.h/handover.c and initialize handover parameters in OML and remember the activation through RSL. --- include/osmo-bts/Makefile.am | 3 ++- include/osmo-bts/handover.h | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 include/osmo-bts/handover.h (limited to 'include') diff --git a/include/osmo-bts/Makefile.am b/include/osmo-bts/Makefile.am index 456d4165..d7f9421f 100644 --- a/include/osmo-bts/Makefile.am +++ b/include/osmo-bts/Makefile.am @@ -1,2 +1,3 @@ noinst_HEADERS = abis.h bts.h bts_model.h gsm_data.h logging.h measurement.h \ - oml.h paging.h rsl.h signal.h vty.h amr.h pcu_if.h pcuif_proto.h + oml.h paging.h rsl.h signal.h vty.h amr.h pcu_if.h pcuif_proto.h \ + handover.h diff --git a/include/osmo-bts/handover.h b/include/osmo-bts/handover.h new file mode 100644 index 00000000..1cf5d696 --- /dev/null +++ b/include/osmo-bts/handover.h @@ -0,0 +1,10 @@ +#pragma once + +enum { + HANDOVER_NONE = 0, + HANDOVER_ENABLED, + HANDOVER_WAIT_FRAME, +}; + +void handover_reset(struct gsm_lchan *lchan); + -- cgit v1.2.3