Re: [Openlte-discuss] LTE_fdd_enb_interface "handle_start" and "handle_stop"
An open source 3GPP LTE implementation.
Status: Alpha
Brought to you by:
bwojtowi
|
From: Ben W. <bwo...@gm...> - 2015-08-16 00:33:31
|
Mikhail, Another great find! I'll fix this in the next release. Thanks, Ben On Tue, Aug 11, 2015 at 12:11 AM, Mikhail Gudkov <gm...@gm...> wrote: > LTE_fdd_enb_timer_mgr entity have start() and no one call stop() function > for it. > > > I think stop function need to be added near the LTE_fdd_enb_interface:1027 > > phy->stop(); > mac->stop(); > rlc->stop(); > pdcp->stop(); > rrc->stop(); > mme->stop(); > timer_mgr->stop(); // <- here > > Second stop near the LTE_fdd_enb_interface:1065 > > phy->stop(); > mac->stop(); > rlc->stop(); > pdcp->stop(); > rrc->stop(); > mme->stop(); > gw->stop(); > timer_mgr->stop(); // <- here > > And cleanup() function near the LTE_fdd_enb_interface:1141 > > // Cleanup all layers > LTE_fdd_enb_radio::cleanup(); > LTE_fdd_enb_phy::cleanup(); > LTE_fdd_enb_mac::cleanup(); > LTE_fdd_enb_rlc::cleanup(); > LTE_fdd_enb_pdcp::cleanup(); > LTE_fdd_enb_rrc::cleanup(); > LTE_fdd_enb_mme::cleanup(); > LTE_fdd_enb_gw::cleanup(); > LTE_fdd_enb_timer_mgr::cleanup(); // <- here > > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Openlte-discuss mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openlte-discuss > > |