Fix typos

This commit is contained in:
dvdgrgrtt 2021-11-02 10:20:38 +01:00 committed by dvdgrgrtt
parent 081428aab8
commit 32c4da8db0
3 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
namespace srsran {
/**
* @brief Descibes a physical layer common interface
* @brief Describes a physical layer common interface
*/
class phy_common_interface
{

View File

@ -291,7 +291,7 @@ bool slot_worker::work_dl()
}
if (srsran_gnb_dl_base_zero(&gnb_dl) < SRSRAN_SUCCESS) {
logger.error("Error zeroeing RE grid");
logger.error("Error zeroing RE grid");
return false;
}

View File

@ -159,7 +159,7 @@ public:
// Run the UL channel simulator
ul_channel.run(gnb_rx_buffers.data(), gnb_rx_buffers.data(), (uint32_t)sf_sz, gnb_time.get(0));
// Set gnb context
// Set gNb context
srsran::phy_common_interface::worker_context_t gnb_context;
gnb_context.sf_idx = slot_idx;
gnb_context.worker_ptr = gnb_worker;
@ -189,7 +189,7 @@ public:
// Run the DL channel simulator
dl_channel.run(ue_rx_buffers.data(), ue_rx_buffers.data(), (uint32_t)sf_sz, ue_time.get(0));
// Set gnb context
// Set UE context
srsran::phy_common_interface::worker_context_t ue_context;
ue_context.sf_idx = slot_idx;
ue_context.worker_ptr = ue_worker;