srsLTE/lib/include/srslte/phy/io/binsource.h

51 lines
1.3 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
* Copyright 2013-2020 Software Radio Systems Limited
2014-01-28 03:41:17 -08:00
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
*
2014-01-28 03:41:17 -08:00
*/
/******************************************************************************
* File: binsource.h
*
* Description: Pseudo-random binary source.
*
* Reference:
*****************************************************************************/
2018-03-31 10:04:04 -07:00
#ifndef SRSLTE_BINSOURCE_H
#define SRSLTE_BINSOURCE_H
2014-01-28 03:41:17 -08:00
#include "srslte/config.h"
#include <stdint.h>
2014-01-28 03:41:17 -08:00
/* Low-level API */
typedef struct SRSLTE_API {
uint32_t seed;
uint32_t* seq_buff;
int seq_buff_nwords;
int seq_cache_nbits;
int seq_cache_rp;
} srslte_binsource_t;
2014-01-28 03:41:17 -08:00
2015-03-18 08:05:38 -07:00
SRSLTE_API void srslte_binsource_init(srslte_binsource_t* q);
SRSLTE_API void srslte_binsource_free(srslte_binsource_t* q);
SRSLTE_API void srslte_binsource_seed_set(srslte_binsource_t* q, uint32_t seed);
2015-03-18 08:05:38 -07:00
SRSLTE_API void srslte_binsource_seed_time(srslte_binsource_t* q);
2015-03-18 08:05:38 -07:00
SRSLTE_API int srslte_binsource_cache_gen(srslte_binsource_t* q, int nbits);
2015-03-18 08:05:38 -07:00
SRSLTE_API void srslte_binsource_cache_cpy(srslte_binsource_t* q, uint8_t* bits, int nbits);
2015-03-18 08:05:38 -07:00
SRSLTE_API int srslte_binsource_generate(srslte_binsource_t* q, uint8_t* bits, int nbits);
2014-01-28 03:41:17 -08:00
2018-03-31 10:04:04 -07:00
#endif // SRSLTE_BINSOURCE_H