srsLTE/srslte/include/srslte/modem/mod.h

62 lines
1.6 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
* 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,
* 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/.
*
*/
#ifndef MOD_
#define MOD_
#include <complex.h>
#include <stdint.h>
#include "srslte/config.h"
#include "modem_table.h"
2015-03-18 11:14:24 -07:00
SRSLTE_API int srslte_mod_modulate(srslte_srslte_modem_table_t* table,
uint8_t *bits,
cf_t* symbols,
uint32_t nbits);
/* High-level API */
typedef struct SRSLTE_API {
2015-03-18 11:14:24 -07:00
srslte_srslte_modem_table_t obj;
2014-06-17 02:11:41 -07:00
struct mod_init {
2015-03-18 05:59:29 -07:00
srslte_mod_t std; // symbol mapping standard (see modem_table.h)
2014-06-17 02:11:41 -07:00
} init;
2015-03-18 11:14:24 -07:00
uint8_t* input;
2014-06-17 02:11:41 -07:00
int in_len;
2014-06-17 02:11:41 -07:00
cf_t* output;
int out_len;
2015-03-18 11:14:24 -07:00
}srslte_mod_hl;
2015-03-18 11:14:24 -07:00
SRSLTE_API int mod_initialize(srslte_mod_hl* hl);
SRSLTE_API int mod_work(srslte_mod_hl* hl);
SRSLTE_API int mod_stop(srslte_mod_hl* hl);
#endif // MOD_