Change in osmo-ttcn3-hacks[master]: pps exchange after power on

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Mon Dec 2 23:29:48 UTC 2019


laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/16311 )

Change subject: pps exchange after power on
......................................................................

pps exchange after power on

Change-Id: Ibe289de5134eec4f7ba26c75ceb4714ad523f0da
---
M ccid/CCID_Tests.ttcn
1 file changed, 49 insertions(+), 0 deletions(-)

Approvals:
  laforge: Looks good to me, approved
  Hoernchen: Looks good to me, but someone else must approve
  Jenkins Builder: Verified



diff --git a/ccid/CCID_Tests.ttcn b/ccid/CCID_Tests.ttcn
index f6816be..c620b0b 100644
--- a/ccid/CCID_Tests.ttcn
+++ b/ccid/CCID_Tests.ttcn
@@ -46,6 +46,54 @@
 const octetstring c_UICC_SELECT_MF := '00a40004023f00'O;
 const octetstring c_SIM_SELECT_MF := 'a0a40004023f00'O;
 
+/* Table 7 of ISO7816-3 */
+type enumerated ISO7816_Fi {
+	ISO7816_FI_372_4MHz	('0000'B),
+	ISO7816_FI_372_5MHz	('0001'B),
+	ISO7816_FI_558_6MHz	('0010'B),
+	ISO7816_FI_744_8MHz	('0011'B),
+	ISO7816_FI_1116_12MHz	('0100'B),
+	ISO7816_FI_1488_16MHz	('0101'B),
+	ISO7816_FI_1860_20MHz	('0110'B),
+
+	ISO7816_FI_512_5MHz	('1001'B),
+	ISO7816_FI_768_7MHz	('1010'B),
+	ISO7816_FI_1024_10MHz	('1011'B),
+	ISO7816_FI_1536_15MHz	('1100'B),
+	ISO7816_FI_2048_20MHz	('1101'B)
+};
+
+/* Table 8 of ISO7816-3 */
+type enumerated ISO7816_Di {
+	ISO7816_DI_1		('0001'B),
+	ISO7816_DI_2		('0010'B),
+	ISO7816_DI_4		('0011'B),
+	ISO7816_DI_8		('0100'B),
+	ISO7816_DI_16		('0101'B),
+	ISO7816_DI_32		('0110'B),
+	ISO7816_DI_64		('0111'B),
+
+	ISO7816_DI_12		('1000'B),
+	ISO7816_DI_20		('1001'B)
+}
+
+private template (value) CCID_ProtocolData ts_ProtoDataT0(ISO7816_Fi fi, ISO7816_Di di,
+							  uint8_t guard_time := 0,
+							  uint8_t wait_int := 0) := {
+	T0 := {
+		Findex := enum2int(fi),
+		Dindex := enum2int(di),
+
+		bRFU := '000000'B,
+		inv_convention := false,
+		bRFU2 := '0'B,
+
+		bGuardTimeT0 := guard_time,
+		bWaitingIntegerT0 := wait_int,
+		bClockStop := STOPPING_NOT_ALLOWED
+	}
+};
+
 type function void_fn() runs on Slot_CT;
 
 /* altstep running on the per-slot test component */
@@ -329,6 +377,7 @@
 {
 	var integer i;
 	f_ccid_power_on();
+	f_ccid_set_par(ts_ProtoDataT0(ISO7816_FI_512_5MHz, ISO7816_DI_32));
 	for (i := 0; i < 1000; i := i+1) {
 		f_ccid_xfr(c_UICC_SELECT_MF, ?);
 	}

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/16311
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ibe289de5134eec4f7ba26c75ceb4714ad523f0da
Gerrit-Change-Number: 16311
Gerrit-PatchSet: 2
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-Reviewer: Hoernchen <ewild at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20191202/c2b9c3d8/attachment.htm>


More information about the gerrit-log mailing list