srsLTE/srslte/lib/modem/src/demod_hard.c

87 lines
2.2 KiB
C
Raw Normal View History

/**
2014-01-28 03:41:17 -08:00
*
* \section COPYRIGHT
2014-01-28 03:41:17 -08:00
*
* Copyright 2013-2014 The srsLTE Developers. See the
* COPYRIGHT file at the top-level directory of this distribution.
*
* \section LICENSE
*
* This file is part of the srsLTE library.
*
* srsLTE 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.
*
* srsLTE is distributed in the hope that it will be useful,
2014-01-28 03:41:17 -08:00
* 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.
*
* A copy of the GNU Lesser General Public License can be found in
* the LICENSE file in the top-level directory of this distribution
* and at http://www.gnu.org/licenses/.
*
2014-01-28 03:41:17 -08:00
*/
2014-01-28 03:41:17 -08:00
#include <stdlib.h>
#include <strings.h>
#include "srslte/modem/demod_hard.h"
2014-01-28 03:41:17 -08:00
#include "hard_demod_lte.h"
2015-03-18 11:14:24 -07:00
void srslte_demod_hard_init(srslte_demod_hard_t* q) {
bzero((void*) q, sizeof(srslte_demod_hard_t));
2014-01-28 03:41:17 -08:00
}
2015-03-18 11:14:24 -07:00
void srslte_demod_hard_table_set(srslte_demod_hard_t* q, srslte_mod_t mod) {
q->mod = mod;
2014-01-28 03:41:17 -08:00
}
2015-03-18 11:14:24 -07:00
int srslte_demod_hard_demodulate(srslte_demod_hard_t* q, cf_t* symbols, uint8_t *bits, uint32_t nsymbols) {
2014-01-28 03:41:17 -08:00
2014-06-17 02:11:41 -07:00
int nbits=-1;
switch(q->mod) {
2015-03-18 11:14:24 -07:00
case SRSLTE_MOD_BPSK:
2014-06-17 02:11:41 -07:00
hard_bpsk_demod(symbols,bits,nsymbols);
nbits=nsymbols;
break;
2015-03-18 11:14:24 -07:00
case SRSLTE_MOD_QPSK:
2014-06-17 02:11:41 -07:00
hard_qpsk_demod(symbols,bits,nsymbols);
nbits=nsymbols*2;
break;
2015-03-18 11:14:24 -07:00
case SRSLTE_MOD_16QAM:
2014-06-17 02:11:41 -07:00
hard_qam16_demod(symbols,bits,nsymbols);
nbits=nsymbols*4;
break;
2015-03-18 11:14:24 -07:00
case SRSLTE_MOD_64QAM:
2014-06-17 02:11:41 -07:00
hard_qam64_demod(symbols,bits,nsymbols);
nbits=nsymbols*6;
break;
}
return nbits;
2014-01-28 03:41:17 -08:00
}
2015-03-18 11:14:24 -07:00
int srslte_demod_hard_initialize(srslte_demod_hard_hl* hl) {
srslte_demod_hard_init(&hl->obj);
srslte_demod_hard_table_set(&hl->obj,hl->init.std);
2014-01-28 03:41:17 -08:00
2014-06-17 02:11:41 -07:00
return 0;
2014-01-28 03:41:17 -08:00
}
2015-03-18 11:14:24 -07:00
int srslte_demod_hard_work(srslte_demod_hard_hl* hl) {
int ret = srslte_demod_hard_demodulate(&hl->obj,hl->input,hl->output,hl->in_len);
2014-06-17 02:11:41 -07:00
hl->out_len = ret;
return 0;
2014-01-28 03:41:17 -08:00
}
2015-03-18 11:14:24 -07:00
int srslte_demod_hard_stop(srslte_demod_hard_hl* hl) {
2014-06-17 02:11:41 -07:00
return 0;
}
2014-01-28 03:41:17 -08:00