Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
oai
openairinterface5G
Commits
4753f92b
Commit
4753f92b
authored
Dec 26, 2018
by
Thomas Laurent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove more files, add a LOG_E() for UE not developped use case
parent
80ac9ece
Changes
12
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
4 additions
and
2744 deletions
+4
-2744
common/utils/time_utils.h
common/utils/time_utils.h
+0
-23
openair1/PHY/CODING/scrambler.h
openair1/PHY/CODING/scrambler.h
+0
-1047
openair1/PHY/INIT/init_extern.h
openair1/PHY/INIT/init_extern.h
+0
-21
openair1/PHY/INIT/init_vars.h
openair1/PHY/INIT/init_vars.h
+0
-21
openair1/PHY/LTE_ESTIMATION/lte_estimation_extern.h
openair1/PHY/LTE_ESTIMATION/lte_estimation_extern.h
+0
-21
openair1/SCHED_UE/phy_procedures_lte_ue.c
openair1/SCHED_UE/phy_procedures_lte_ue.c
+1
-1
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_proto_extern.h
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_proto_extern.h
+0
-21
openair2/RRC/LTE/rrc_2_rrm_msg.c
openair2/RRC/LTE/rrc_2_rrm_msg.c
+0
-439
openair2/RRC/LTE/rrc_UE.c
openair2/RRC/LTE/rrc_UE.c
+3
-1
openair3/NAS/COMMON/API/NETWORK/l2_message.h
openair3/NAS/COMMON/API/NETWORK/l2_message.h
+0
-310
openair3/NAS/TOOLS/network.h
openair3/NAS/TOOLS/network.h
+0
-123
openair3/UTILS/mme_config.c
openair3/UTILS/mme_config.c
+0
-716
No files found.
common/utils/time_utils.h
deleted
100644 → 0
View file @
80ac9ece
#ifndef _TIME_UTILS_H_
#define _TIME_UTILS_H_
#include <time.h>
#include <stdint.h>
static
inline
int64_t
clock_difftime_ns
(
struct
timespec
start
,
struct
timespec
end
)
{
struct
timespec
temp
;
int64_t
temp_ns
;
if
((
end
.
tv_nsec
-
start
.
tv_nsec
)
<
0
)
{
temp
.
tv_sec
=
end
.
tv_sec
-
start
.
tv_sec
-
1
;
temp
.
tv_nsec
=
1000000000
+
end
.
tv_nsec
-
start
.
tv_nsec
;
}
else
{
temp
.
tv_sec
=
end
.
tv_sec
-
start
.
tv_sec
;
temp
.
tv_nsec
=
end
.
tv_nsec
-
start
.
tv_nsec
;
}
temp_ns
=
(
int64_t
)(
temp
.
tv_sec
)
*
(
int64_t
)
1000000000
+
(
temp
.
tv_nsec
);
return
temp_ns
;
}
#endif
/* _TIME_UTILS_H_ */
openair1/PHY/CODING/scrambler.h
deleted
100644 → 0
View file @
80ac9ece
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the OAI Public License, Version 1.1 (the "License"); you may not use this file
* except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.openairinterface.org/?page_id=698
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*-------------------------------------------------------------------------------
* For more information about the OpenAirInterface (OAI) Software Alliance:
* contact@openairinterface.org
*/
unsigned
char
scrambling_sequence
[
1024
]
=
{
208
,
127
,
52
,
95
,
204
,
135
,
48
,
31
,
248
,
32
,
208
,
135
,
192
,
232
,
63
,
175
,
4
,
212
,
119
,
24
,
169
,
162
,
101
,
144
,
75
,
109
,
75
,
29
,
91
,
191
,
165
,
246
,
177
,
71
,
16
,
92
,
68
,
80
,
132
,
4
,
248
,
251
,
32
,
65
,
125
,
56
,
94
,
86
,
152
,
11
,
201
,
134
,
39
,
250
,
19
,
162
,
25
,
190
,
62
,
3
,
190
,
18
,
188
,
215
,
97
,
239
,
72
,
11
,
0
,
26
,
57
,
211
,
146
,
37
,
205
,
121
,
204
,
83
,
13
,
206
,
53
,
27
,
214
,
32
,
54
,
214
,
82
,
125
,
226
,
108
,
169
,
102
,
247
,
255
,
32
,
171
,
201
,
112
,
20
,
253
,
65
,
192
,
38
,
78
,
114
,
40
,
95
,
32
,
70
,
194
,
242
,
153
,
207
,
63
,
61
,
117
,
122
,
32
,
73
,
60
,
160
,
140
,
99
,
235
,
118
,
176
,
75
,
102
,
254
,
5
,
67
,
194
,
122
,
62
,
226
,
56
,
69
,
123
,
213
,
179
,
119
,
221
,
23
,
63
,
26
,
160
,
233
,
166
,
179
,
243
,
169
,
190
,
183
,
146
,
169
,
185
,
216
,
214
,
158
,
86
,
139
,
214
,
143
,
181
,
0
,
9
,
147
,
254
,
105
,
138
,
213
,
118
,
14
,
74
,
153
,
110
,
41
,
47
,
172
,
91
,
216
,
117
,
156
,
62
,
56
,
75
,
113
,
6
,
123
,
178
,
118
,
97
,
82
,
75
,
96
,
21
,
148
,
170
,
120
,
227
,
0
,
245
,
25
,
147
,
243
,
185
,
203
,
135
,
48
,
104
,
89
,
38
,
71
,
30
,
74
,
219
,
130
,
107
,
75
,
244
,
138
,
8
,
8
,
248
,
175
,
65
,
234
,
35
,
125
,
138
,
0
,
95
,
23
,
171
,
177
,
166
,
196
,
173
,
235
,
244
,
124
,
20
,
22
,
78
,
32
,
207
,
173
,
103
,
232
,
84
,
18
,
227
,
246
,
127
,
136
,
28
,
188
,
39
,
132
,
79
,
14
,
62
,
80
,
248
,
171
,
21
,
160
,
188
,
110
,
125
,
55
,
198
,
139
,
185
,
28
,
127
,
239
,
246
,
223
,
47
,
55
,
63
,
63
,
129
,
253
,
175
,
122
,
182
,
139
,
52
,
163
,
164
,
177
,
6
,
187
,
220
,
159
,
76
,
36
,
164
,
108
,
218
,
189
,
250
,
148
,
201
,
45
,
207
,
174
,
81
,
195
,
108
,
96
,
203
,
132
,
210
,
34
,
142
,
247
,
238
,
139
,
84
,
84
,
194
,
168
,
46
,
9
,
238
,
29
,
135
,
115
,
95
,
12
,
218
,
18
,
134
,
110
,
83
,
110
,
44
,
80
,
80
,
216
,
126
,
160
,
65
,
142
,
142
,
209
,
69
,
234
,
200
,
184
,
171
,
248
,
185
,
148
,
203
,
90
,
143
,
231
,
29
,
47
,
214
,
151
,
154
,
137
,
152
,
228
,
192
,
182
,
108
,
200
,
226
,
204
,
82
,
170
,
110
,
197
,
143
,
169
,
230
,
75
,
204
,
177
,
222
,
142
,
1
,
104
,
130
,
224
,
201
,
29
,
223
,
246
,
132
,
173
,
42
,
33
,
165
,
147
,
208
,
124
,
208
,
198
,
51
,
78
,
76
,
216
,
164
,
250
,
186
,
214
,
57
,
52
,
52
,
199
,
37
,
3
,
242
,
120
,
179
,
26
,
233
,
51
,
42
,
11
,
108
,
26
,
41
,
192
,
41
,
221
,
71
,
16
,
67
,
131
,
90
,
226
,
181
,
0
,
244
,
183
,
31
,
78
,
241
,
221
,
173
,
248
,
146
,
23
,
244
,
102
,
194
,
201
,
16
,
25
,
155
,
110
,
146
,
54
,
246
,
40
,
5
,
78
,
94
,
47
,
135
,
60
,
103
,
29
,
175
,
142
,
9
,
213
,
70
,
159
,
168
,
176
,
217
,
91
,
13
,
1
,
254
,
104
,
135
,
20
,
135
,
147
,
23
,
141
,
8
,
115
,
180
,
201
,
50
,
246
,
4
,
12
,
72
,
59
,
166
,
22
,
61
,
77
,
140
,
183
,
150
,
255
,
55
,
31
,
71
,
215
,
83
,
75
,
169
,
137
,
104
,
237
,
88
,
118
,
146
,
247
,
95
,
182
,
241
,
29
,
98
,
243
,
152
,
52
,
230
,
114
,
27
,
247
,
116
,
78
,
152
,
202
,
96
,
15
,
112
,
196
,
245
,
148
,
9
,
228
,
111
,
131
,
179
,
198
,
243
,
35
,
140
,
234
,
248
,
8
,
197
,
218
,
35
,
246
,
172
,
207
,
93
,
62
,
157
,
196
,
149
,
199
,
136
,
30
,
70
,
13
,
116
,
63
,
171
,
207
,
254
,
51
,
18
,
126
,
246
,
195
,
218
,
222
,
204
,
105
,
132
,
150
,
123
,
136
,
24
,
23
,
143
,
162
,
175
,
185
,