/** * Extracts PBCH from slot number 1 * * Returns the number of symbols written to pbch * * 36.211 10.3 section 6.6.4 */ int pbch_get(cf_t *slot1_data, cf_t *pbch, lte_cell_t cell) { return pbch_cp(slot1_data, pbch, cell, false); }
/** * Puts PBCH in slot number 1 * * Returns the number of symbols written to slot1_data * * 36.211 10.3 section 6.6.4 */ int pbch_put(cf_t *pbch, cf_t *slot1_data, int nof_prb, lte_cp_t cp, int cell_id) { return pbch_cp(pbch, slot1_data, nof_prb, cp, cell_id, true); }
/** * Puts PBCH in slot number 1 * * Returns the number of symbols written to slot1_data * * 36.211 10.3 section 6.6.4 */ int pbch_put(cf_t *pbch, cf_t *slot1_data, lte_cell_t cell) { return pbch_cp(pbch, slot1_data, cell, true); }
/** * Extracts PBCH from slot number 1 * * Returns the number of symbols written to pbch * * 36.211 10.3 section 6.6.4 */ int pbch_get(cf_t *slot1_data, cf_t *pbch, int nof_prb, lte_cp_t cp, int cell_id) { return pbch_cp(slot1_data, pbch, nof_prb, cp, cell_id, false); }