Merge branch 'master' of github.com:srsLTE/srsLTE

This commit is contained in:
Ismael Gomez 2017-06-20 10:22:01 +02:00
commit 8a5a2bbb4d
3 changed files with 3 additions and 1 deletions

View File

@ -79,6 +79,7 @@ Build Instructions
* srsENB: * srsENB:
* Boost: http://www.boost.org * Boost: http://www.boost.org
* lksctp: http://lksctp.sourceforge.net/ * lksctp: http://lksctp.sourceforge.net/
* config: http://www.hyperrealm.com/libconfig/
* Optional requirements: * Optional requirements:
* srsgui: https://github.com/srslte/srsgui - for real-time plotting. * srsgui: https://github.com/srslte/srsgui - for real-time plotting.

View File

@ -52,7 +52,7 @@ void srslte_filesink_free(srslte_filesink_t *q) {
} }
int srslte_filesink_write(srslte_filesink_t *q, void *buffer, int nsamples) { int srslte_filesink_write(srslte_filesink_t *q, void *buffer, int nsamples) {
int i; int i = 0;
float *fbuf = (float*) buffer; float *fbuf = (float*) buffer;
_Complex float *cbuf = (_Complex float*) buffer; _Complex float *cbuf = (_Complex float*) buffer;
_Complex short *sbuf = (_Complex short*) buffer; _Complex short *sbuf = (_Complex short*) buffer;

View File

@ -995,6 +995,7 @@ bool rrc::ue::release_erabs()
void rrc::ue::notify_s1ap_ue_ctxt_setup_complete() void rrc::ue::notify_s1ap_ue_ctxt_setup_complete()
{ {
LIBLTE_S1AP_MESSAGE_INITIALCONTEXTSETUPRESPONSE_STRUCT res; LIBLTE_S1AP_MESSAGE_INITIALCONTEXTSETUPRESPONSE_STRUCT res;
res.ext = false;
res.E_RABSetupListCtxtSURes.len = 0; res.E_RABSetupListCtxtSURes.len = 0;
res.E_RABFailedToSetupListCtxtSURes.len = 0; res.E_RABFailedToSetupListCtxtSURes.len = 0;