jolly has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42792?usp=email )
Change subject: SIMTRACE: Add missing pres_pol to CardEmu_BD_Config message
......................................................................
SIMTRACE: Add missing pres_pol to CardEmu_BD_Config message
Change-Id: I443e8151b0aa9bff150222ab6b507ed1f7946768
---
M library/SIMTRACE_Templates.ttcn
M library/SIMTRACE_Types.ttcn
2 files changed, 6 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks
refs/changes/92/42792/1
diff --git a/library/SIMTRACE_Templates.ttcn b/library/SIMTRACE_Templates.ttcn
index 05f738f..d9e6c9a 100644
--- a/library/SIMTRACE_Templates.ttcn
+++ b/library/SIMTRACE_Templates.ttcn
@@ -217,12 +217,14 @@
template (value) SIMTRACE_PDU
ts_SIMTRACE_CEMU_CONFIG(template (value) CardEmu_FeatureFlags flags) :=
ts_SIMTRACE(SIMTRACE_MSGT_BD_CEMU_CONFIG, { cardem_bd_config := {
features := flags,
-
slot_mux_nr := 0} });
+
slot_mux_nr := 0,
+
pres_pol := 0} });
template (present) SIMTRACE_PDU
tr_SIMTRACE_CEMU_CONFIG(template (present) CardEmu_FeatureFlags flags) :=
tr_SIMTRACE(SIMTRACE_MSGT_BD_CEMU_CONFIG, { cardem_bd_config := {
features := flags,
-
slot_mux_nr := * } });
+
slot_mux_nr := *,
+
pres_pol := * } });
/***********************************************************************
diff --git a/library/SIMTRACE_Types.ttcn b/library/SIMTRACE_Types.ttcn
index d28df2f..55f5541 100644
--- a/library/SIMTRACE_Types.ttcn
+++ b/library/SIMTRACE_Types.ttcn
@@ -274,7 +274,8 @@
type record CardEmu_BD_Config {
CardEmu_FeatureFlags features,
- uint8_t slot_mux_nr optional
+ uint8_t slot_mux_nr optional,
+ uint8_t pres_pol optional
};
/***********************************************************************
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42792?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I443e8151b0aa9bff150222ab6b507ed1f7946768
Gerrit-Change-Number: 42792
Gerrit-PatchSet: 1
Gerrit-Owner: jolly <[email protected]>