You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ns-developers
Hi everyone, I'm working with NS3 software for my final college project, however I'm having trouble implementing callbacks to obtain parameters such as received power and signal-to-noise ratio. Could you help me? Initially, I'm using a simplified scenario to learn how to use the software. I'll forward the output with the error I'm getting, as well as the code I'm trying to implement. #include "ns3/core-module.h" #include "ns3/network-module.h" #include "ns3/mobility-module.h" #include "ns3/buildings-module.h" #include "ns3/nr-module.h"
// ======= CONFIGURAÇÃO DO NR-LENA ======= Ptr<NrHelper> nrHelper = CreateObject<NrHelper>();
// Criação de Bandwidth Parts no formato correto (com unique_ptr) std::vector<std::unique_ptr<BandwidthPartInfo>> gnbBwps; gnbBwps.emplace_back(std::make_unique<BandwidthPartInfo>());
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ns-dev...@googlegroups.com
Hi Joao, this list is for development discussions, and not debugging, so
please post any follow-up messages instead to the
5g-len...@googlegroups.com forum.
In looking briefly at the problem here, I don't think it is
callback-related but instead I think there is some missing object
(possibly a SpectrumChannel) that is causing a segmentation fault during
scenario construction. In general, you can usually trace these back to
the problem if you install and use gdb:
If you want further help from the 5g-lena-users forum, please specify
the nr version that you are using (I see that you are using ns-3.36,
which is an older version of the mainline).