aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-09-29 19:22:19 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-09-30 13:14:08 +0200
commitd17beeacde000819c6481982da92fceed49eceb9 (patch)
treee0f6c166cc1e31bd1e2791f86289e5e095ffa813 /include
parent134c999103049581be340630e21f0ee486003a76 (diff)
bts-trx: Delay power ramp up until RCARRIER is ENABLED
Prior to this patch, the power ramping started when the PHY is available, but that doesn't necessarily mean the RCARRIER is enabled. Due to this, it was spotted a situation where BTS bootstrap failed after PHY turning up, when RSL connection establishment failed. Hence bts_shutdown_fsm triggered a shutdown while an active power ramping up was ongoing... Change-Id: I17208b74ea2649b1bbb717aee0aa355e42b7e860
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/signal.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/osmo-bts/signal.h b/include/osmo-bts/signal.h
index c8168a26..8359f021 100644
--- a/include/osmo-bts/signal.h
+++ b/include/osmo-bts/signal.h
@@ -15,4 +15,10 @@ enum signals_global {
S_NEW_NSVC_ATTR,
};
+struct nm_statechg_signal_data {
+ struct gsm_abis_mo *mo;
+ uint8_t old_state;
+ uint8_t new_state;
+};
+
#endif