mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.0 KiB
C
82 lines
2.0 KiB
C
10 years ago
|
/*
|
||
|
* Copyright (c) 2012, Ismael Gomez-Miguelez <ismael.gomez@tsc.upc.edu>.
|
||
|
* This file is part of ALOE++ (http://flexnets.upc.edu/)
|
||
|
*
|
||
|
* ALOE++ is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Lesser General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* ALOE++ is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public License
|
||
|
* along with ALOE++. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#include <string.h>
|
||
|
#include "liblte/phy/phy.h"
|
||
|
#include "liblte/mex/mexutils.h"
|
||
|
|
||
|
/** MEX function to be called from MATLAB to test the channel estimator
|
||
|
*/
|
||
|
|
||
|
#define INPUT prhs[0]
|
||
|
#define NOF_INPUTS 1
|
||
|
|
||
|
|
||
|
void help()
|
||
|
{
|
||
|
mexErrMsgTxt
|
||
|
("[decoded_bits] = liblte_viterbi(input_llr, type)\n\n");
|
||
|
}
|
||
|
|
||
|
/* the gateway function */
|
||
|
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
|
||
|
{
|
||
|
|
||
|
viterbi_t viterbi;
|
||
|
float *input_llr;
|
||
|
uint8_t *output_data;
|
||
|
int nof_bits;
|
||
|
|
||
|
if (nrhs < NOF_INPUTS) {
|
||
|
help();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Read input symbols
|
||
|
nof_bits = mexutils_read_f(INPUT, &input_llr);
|
||
|
|
||
|
output_data = vec_malloc(nof_bits * sizeof(uint8_t));
|
||
|
|
||
|
uint32_t poly[3] = { 0x6D, 0x4F, 0x57 };
|
||
|
if (viterbi_init(&viterbi, viterbi_37, poly, nof_bits/3, true)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (nrhs >= 2) {
|
||
|
float gain_quant = mxGetScalar(prhs[1]);
|
||
|
viterbi_set_gain_quant(&viterbi, gain_quant);
|
||
|
}
|
||
|
|
||
|
viterbi_decode_f(&viterbi, input_llr, output_data, nof_bits/3);
|
||
|
|
||
|
if (nlhs >= 1) {
|
||
|
mexutils_write_uint8(output_data, &plhs[0], nof_bits/3, 1);
|
||
|
}
|
||
|
if (nlhs >= 2) {
|
||
|
mexutils_write_uint8(viterbi.symbols_uc, &plhs[1], nof_bits/3, 1);
|
||
|
}
|
||
|
|
||
|
viterbi_free(&viterbi);
|
||
|
|
||
|
free(input_llr);
|
||
|
free(output_data);
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|