Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibIts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
TTCN-3 Libraries
LibIts
Commits
26fa816b
Commit
26fa816b
authored
12 years ago
by
schmitting
Browse files
Options
Downloads
Patches
Plain Diff
IN functions added, types/templates modified
parent
de22143f
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
ttcn/DCC/LibItsDcc_Functions.ttcn3
+384
-3
384 additions, 3 deletions
ttcn/DCC/LibItsDcc_Functions.ttcn3
ttcn/DCC/LibItsDcc_Templates.ttcn3
+6
-9
6 additions, 9 deletions
ttcn/DCC/LibItsDcc_Templates.ttcn3
ttcn/DCC/LibItsDcc_TypesAndValues.ttcn3
+7
-2
7 additions, 2 deletions
ttcn/DCC/LibItsDcc_TypesAndValues.ttcn3
with
397 additions
and
14 deletions
ttcn/DCC/LibItsDcc_Functions.ttcn3
+
384
−
3
View file @
26fa816b
This diff is collapsed.
Click to expand it.
ttcn/DCC/LibItsDcc_Templates.ttcn3
+
6
−
9
View file @
26fa816b
...
@@ -44,12 +44,10 @@ module LibItsDcc_Templates {
...
@@ -44,12 +44,10 @@ module LibItsDcc_Templates {
*/
*/
template
UtRadioCommandIndication
m_utRadioCommandIndication
(
Channel
p_channel
,
template
UtRadioCommandIndication
m_utRadioCommandIndication
(
Channel
p_channel
,
template
integer
p_measuredPower
,
template
integer
p_measuredPower
,
template
integer
p_interPacketSpacing_Toff
,
template
integer
p_interPacketSpacing_Toff
)
:=
template
integer
p_burstLength_Ton
)
:=
{
channel
:=
p_channel
,
{
channel
:=
p_channel
,
measuredPower
:=
p_measuredPower
,
measuredPower
:=
p_measuredPower
,
interPacketSpacing_Toff
:=
p_interPacketSpacing_Toff
,
interPacketSpacing_Toff
:=
p_interPacketSpacing_Toff
burstLength_Ton
:=
p_burstLength_Ton
}
// End m_utRadioCommandIndication
}
// End m_utRadioCommandIndication
}
// End of group utPrimitives
}
// End of group utPrimitives
...
@@ -63,11 +61,11 @@ module LibItsDcc_Templates {
...
@@ -63,11 +61,11 @@ module LibItsDcc_Templates {
*/
*/
template
InReq
m_In_Request
(
integer
p_commandReference
,
template
InReq
m_In_Request
(
integer
p_commandReference
,
octetstring
p_referenceBurst
,
octetstring
p_referenceBurst
,
integer
p_requested
Send
Power
,
integer
p_requested
Tx
Power
,
integer
p_dCCProfileIdentifier
)
:=
integer
p_dCCProfileIdentifier
)
:=
{
commandReference
:=
p_commandReference
,
{
commandReference
:=
p_commandReference
,
referenceBurst
:=
p_referenceBurst
,
referenceBurst
:=
p_referenceBurst
,
requestedSendPower
:=
p_requested
Send
Power
,
requestedSendPower
:=
p_requested
Tx
Power
,
dCCProfileIdentifier
:=
p_dCCProfileIdentifier
dCCProfileIdentifier
:=
p_dCCProfileIdentifier
}
// End m_In_Request
}
// End m_In_Request
...
@@ -76,12 +74,11 @@ module LibItsDcc_Templates {
...
@@ -76,12 +74,11 @@ module LibItsDcc_Templates {
*/
*/
template
InSta
mw_In_Status
(
template
integer
p_commandReference
,
template
InSta
mw_In_Status
(
template
integer
p_commandReference
,
template
Channel
p_channel
,
template
Channel
p_channel
,
template
boolean
p_transmissionSuccessStatus
,
template
boolean
p_transmissionSuccessStatus
)
:=
template
integer
p_achievedSendPower
)
:=
{
commandReference
:=
p_commandReference
,
{
commandReference
:=
p_commandReference
,
channel
:=
p_channel
,
channel
:=
p_channel
,
transmissionSuccessStatus
:=
p_transmissionSuccessStatus
,
transmissionSuccessStatus
:=
p_transmissionSuccessStatus
,
achievedSendPower
:=
p_achievedSendPower
achievedSendPower
:=
?
}
// End mw_In_Status
}
// End mw_In_Status
}
// End of group inSapPrimitives
}
// End of group inSapPrimitives
...
...
This diff is collapsed.
Click to expand it.
ttcn/DCC/LibItsDcc_TypesAndValues.ttcn3
+
7
−
2
View file @
26fa816b
...
@@ -36,8 +36,7 @@ module LibItsDcc_TypesAndValues {
...
@@ -36,8 +36,7 @@ module LibItsDcc_TypesAndValues {
type
record
UtRadioCommandIndication
{
type
record
UtRadioCommandIndication
{
Channel
channel
,
Channel
channel
,
integer
measuredPower
,
integer
measuredPower
,
integer
interPacketSpacing_Toff
,
integer
interPacketSpacing_Toff
integer
burstLength_Ton
}
}
}
// End of group utRadioPrimitives
}
// End of group utRadioPrimitives
...
@@ -83,6 +82,12 @@ module LibItsDcc_TypesAndValues {
...
@@ -83,6 +82,12 @@ module LibItsDcc_TypesAndValues {
}
}
}
// End of group subFields
}
// End of group subFields
group
Constants
{
const
integer
c_maxCommandReference
:=
256
;
}
// End of group Constants
}
}
with
{
with
{
encode
"LibItsDcc_TypesAndValues"
encode
"LibItsDcc_TypesAndValues"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment