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.
61 lines
1.8 KiB
C
61 lines
1.8 KiB
C
/*
|
|
* Copyright (c) 2013, Ismael Gomez-Miguelez <gomezi@tcd.ie>.
|
|
* This file is part of OSLD-lib (http://https://github.com/ismagom/osld-lib)
|
|
*
|
|
* OSLD-lib 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.
|
|
*
|
|
* OSLD-lib 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 OSLD-lib. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef BINSOURCE_
|
|
#define BINSOURCE_
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Low-level API */
|
|
typedef struct {
|
|
unsigned int seed;
|
|
uint32_t *seq_buff;
|
|
int seq_buff_nwords;
|
|
int seq_cache_nbits;
|
|
int seq_cache_rp;
|
|
}binsource_t;
|
|
|
|
void binsource_init(binsource_t* q);
|
|
void binsource_free(binsource_t* q);
|
|
void binsource_seed_set(binsource_t* q, unsigned int seed);
|
|
void binsource_seed_time(binsource_t *q);
|
|
int binsource_cache_gen(binsource_t* q, int nbits);
|
|
void binsource_cache_cpy(binsource_t* q, char *bits, int nbits);
|
|
int binsource_generate(binsource_t* q, char *bits, int nbits);
|
|
|
|
/* High-level API */
|
|
typedef struct {
|
|
binsource_t obj;
|
|
struct binsource_init {
|
|
int cache_seq_nbits; // If non-zero, generates random bits on init
|
|
unsigned int seed; // If non-zero, uses as random seed, otherwise local time is used.
|
|
} init;
|
|
struct binsource_ctrl_in {
|
|
int nbits; // Number of bits to generate
|
|
} ctrl_in;
|
|
char* output;
|
|
int out_len;
|
|
}binsource_hl;
|
|
|
|
int binsource_initialize(binsource_hl* h);
|
|
int binsource_work( binsource_hl* hl);
|
|
int binsource_stop(binsource_hl* hl);
|
|
|
|
#endif
|