Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Merge requests
!2438
PSBCH RX,TX and SLSS SEARCH procedures
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
PSBCH RX,TX and SLSS SEARCH procedures
NR_PSBCH_MERGE1
into
develop
Overview
103
Commits
6
Pipelines
0
Changes
42
Merged
Raghavendra Dinavahi
requested to merge
NR_PSBCH_MERGE1
into
develop
1 year ago
Overview
103
Commits
6
Pipelines
0
Changes
42
Expand
PSBCH RX/TX and SLSS search procedures according to 3GPP Specs 38.211, 38.212 Rel16
PSBCH simulator used to validate TX/RX phy processing and SLSS SEARCH functionality
to test the PSBCH TX and RX functionality - ./nr_psbchsim
option 'I' to trigger sidelink search ex ./nr_psbchsim -I
option 'T' to change timing in the SL-MIB ex ./nr_psbchsim -T 5 18 -I
option 's' to change the SLSS id
Edited
1 year ago
by
Raghavendra Dinavahi
0
0
Merge request reports
Compare
develop
version 15
f042bd7a
11 months ago
version 14
b58c320f
11 months ago
version 13
9ad44790
11 months ago
version 12
7ba34d91
11 months ago
version 11
8127bde5
11 months ago
version 10
d1bfebc5
11 months ago
version 9
0968f5e2
11 months ago
version 8
951318c4
1 year ago
version 7
c5e23e20
1 year ago
version 6
ee7b8cf5
1 year ago
version 5
f85be3be
1 year ago
version 4
6358c343
1 year ago
version 3
c5769f5d
1 year ago
version 2
a14cfd09
1 year ago
version 1
26159678
1 year ago
develop (base)
and
latest version
latest version
d7a27954
6 commits,
10 months ago
version 15
f042bd7a
5 commits,
11 months ago
version 14
b58c320f
4 commits,
11 months ago
version 13
9ad44790
6 commits,
11 months ago
version 12
7ba34d91
5 commits,
11 months ago
version 11
8127bde5
4 commits,
11 months ago
version 10
d1bfebc5
2 commits,
11 months ago
version 9
0968f5e2
1 commit,
11 months ago
version 8
951318c4
1 commit,
1 year ago
version 7
c5e23e20
4 commits,
1 year ago
version 6
ee7b8cf5
4 commits,
1 year ago
version 5
f85be3be
4 commits,
1 year ago
version 4
6358c343
3 commits,
1 year ago
version 3
c5769f5d
3 commits,
1 year ago
version 2
a14cfd09
2 commits,
1 year ago
version 1
26159678
2 commits,
1 year ago
42 files
+
3290
−
198
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
42
Search (e.g. *.vue) (Ctrl+P)
charts/physims/charts/nr-psbchsim/templates/_helpers.tpl
0 → 100644
+
63
−
0
Options
{{
/*
vim
:
set
filetype
=
mustache
:
*/
}}
{
{
/*
Expand
the
name
of
the
chart
.
*/
}
}
{{- define "oai-nr-psbchsim.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{
{
/*
Create
a
default
fully
qualified
app
name
.
We
truncate
at
63
chars
because
some
Kubernetes
name
fields
are
limited
to
this
(
by
the
DNS
naming
spec
).
If
release
name
contains
chart
name
it
will
be
used
as
a
full
name
.
*/
}
}
{{- define "oai-nr-psbchsim.fullname" -}}
{{- if .Values.fullnameOverride -}}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- $name := default .Chart.Name .Values.nameOverride -}}
{{- if contains $name .Release.Name -}}
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- end -}}
{{- end -}}
{
{
/*
Create
chart
name
and
version
as
used
by
the
chart
label
.
*/
}
}
{{- define "oai-nr-psbchsim.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{
{
/*
Common
labels
*/
}
}
{{- define "oai-nr-psbchsim.labels" -}}
helm.sh/chart: {{ include "oai-nr-psbchsim.chart" . }}
{{ include "oai-nr-psbchsim.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end -}}
{
{
/*
Selector
labels
*/
}
}
{{- define "oai-nr-psbchsim.selectorLabels" -}}
app.kubernetes.io/name: {{ include "oai-nr-psbchsim.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end -}}
{
{
/*
Create
the
name
of
the
service
account
to
use
*/
}
}
{{- define "oai-nr-psbchsim.serviceAccountName" -}}
{{- if .Values.serviceAccount.create -}}
{{ default (include "oai-nr-psbchsim.fullname" .) .Values.serviceAccount.name }}
{{- else -}}
{{ default "default" .Values.serviceAccount.name }}
{{- end -}}
{{- end -}}
Loading