origen_std_lib 0.12.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 836141177146f1a749274c64b6435555625bf0e62ac858a54350d54ecabf9d09
4
- data.tar.gz: 630b23dfd5df2501743cace53f32fa010284ad480bde49803f186c02c804adf1
3
+ metadata.gz: 14b8444afc790a16b209561fafbdf315859448bdaa3b56672fa49bf9a3d626f6
4
+ data.tar.gz: 33df693bbc10b1d9b37fb8da1afb27947f029a46fc65ac74e88652cb9bcf53b6
5
5
  SHA512:
6
- metadata.gz: 1650d5aa85a5298bdb91ba7b9ba49234dfae2f0f5d1d84647e997c5816ec35a7300d406d19d207ec15d005dc60ebba2e8e736f7447d18f55ea5f0a5453f52dc2
7
- data.tar.gz: a09405cc87b1ebdb691ed04ab05313dbe7d24822c869d53ec250d5763ccca3a11979fad520b859b602509b7a30c0c8a20036767c054446d9ff24e71133951f16
6
+ metadata.gz: a8673d212602dcc57418e3d59da651cd76feeb430dc279bff640be8bb13de98782271bea9f0cffc451c1077d63e96c988dcebf60cd4629a83de81cfab750710b
7
+ data.tar.gz: dc9b3b4278b940f2e683c00f95835b143dbc812ab146c1d0f858fc4a229425094bd9d959c0b4e206cea6a493524f821a5350930cdc8503de41daaf169caaba65
@@ -1,6 +1,6 @@
1
1
  module OrigenStdLib
2
2
  MAJOR = 0
3
- MINOR = 12
3
+ MINOR = 13
4
4
  BUGFIX = 0
5
5
  DEV = nil
6
6
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
@@ -1,7 +1,7 @@
1
1
  #ifndef ORIGEN_HPP_INCLUDED
2
2
  #define ORIGEN_HPP_INCLUDED
3
3
 
4
- #define ORIGEN_VERSION "0.12.0"
4
+ #define ORIGEN_VERSION "0.13.0"
5
5
 
6
6
  #ifndef debugger
7
7
  #define debugger __asm__("int $3");
@@ -165,10 +165,12 @@ public class Origen {
165
165
  */
166
166
  public static MultiSiteString lotid() {
167
167
  if (!_lotidSet) {
168
- MultiSiteString lot_id =
169
- context.testProgram().variables().getString("STDF.WAFER_ID"); // for use with prober
170
- // MultiSiteString lot_id = new MultiSiteString("TR7T7290W25D0"); // for debug
171
- // purpose
168
+
169
+ MultiSiteString lot_id = new MultiSiteString("TR7T7290W25D0");
170
+
171
+ if(!context.testProgram().variables().getString("mi8_recipe_version").get().isEmpty()) {
172
+ lot_id = context.testProgram().variables().getString("STDF.WAFER_ID"); //for use with prober
173
+ }
172
174
 
173
175
  MultiSiteString batch_id = new MultiSiteString();
174
176
  for (int site : context.getActiveSites()) {
@@ -222,12 +224,13 @@ public class Origen {
222
224
  */
223
225
  public static MultiSiteLong wafer() {
224
226
  if (!_waferSet) {
225
- MultiSiteString wafer_id =
226
- context.testProgram().variables().getString("STDF.WAFER_ID"); // for use with prober
227
- // MultiSiteString wafer_id = new MultiSiteString("TR7T7290W55D0"); // for debug
228
- // purpose
227
+
228
+ MultiSiteString wafer_id = new MultiSiteString("TR7T7290W55D0");
229
229
 
230
- // Expect to return something like "TR7T7290W25D0)", where 25 is the wafer number
230
+ if(!context.testProgram().variables().getString("mi8_recipe_version").get().isEmpty()) {
231
+ wafer_id = context.testProgram().variables().getString("STDF.WAFER_ID"); //for use with prober
232
+ // Expect to return something like "TR7T7290W25D0)", where 25 is the wafer number
233
+ }
231
234
 
232
235
  MultiSiteLong mslWnum = new MultiSiteLong(0);
233
236
  for (int site : context.getActiveSites()) {
@@ -254,10 +257,14 @@ public class Origen {
254
257
 
255
258
  /** Query the X and Y coordinates from the test system and set them for all sites. */
256
259
  public static void setXY() {
257
- MultiSiteLong x_coord =
258
- context.testProgram().variables().getLong("STDF.X_COORD"); // for use with probe
259
- MultiSiteLong y_coord =
260
- context.testProgram().variables().getLong("STDF.Y_COORD"); // for use with probe
260
+
261
+ MultiSiteLong x_coord = new MultiSiteLong(90); // for debug purpose
262
+ MultiSiteLong y_coord = new MultiSiteLong(100); // for debug purpose
263
+
264
+ if(!context.testProgram().variables().getString("mi8_recipe_version").get().isEmpty()) {
265
+ x_coord =context.testProgram().variables().getLong("STDF.X_COORD"); //for use with probe
266
+ y_coord =context.testProgram().variables().getLong("STDF.Y_COORD"); //for use with probe
267
+ }
261
268
 
262
269
  // MultiSiteLong x_coord = new MultiSiteLong(90); // for debug purpose
263
270
  // MultiSiteLong y_coord = new MultiSiteLong(100); // for debug purpose
@@ -24,7 +24,7 @@ public class Base extends TestMethod {
24
24
  public MultiSiteLong setOnFailFlags;
25
25
  // When set to true the tester will never be released by Origen code, though your application
26
26
  // test method code is still free to do so if you want
27
- public Boolean sync = false;
27
+ public Boolean syncPar = false;
28
28
  /**
29
29
  * The log level that will be used during the execution of the TP. Change the value here to get
30
30
  * more, or less logging info
@@ -263,7 +263,7 @@ public class DC_Measurement extends Base {
263
263
 
264
264
  // Assume for now that if force pass is set then branching decision could be dependent on the
265
265
  // result of this test, in future add another attribute to control async processing on/off
266
- if (!sync && !forcePass) {
266
+ if (!syncPar && !forcePass) {
267
267
  releaseTester();
268
268
  }
269
269
 
@@ -441,7 +441,7 @@ public class Functional_test extends Base {
441
441
 
442
442
  // Assume for now that if force pass is set then branching decision could be dependent on the
443
443
  // result of this test, in future add another attribute to control async processing on/off
444
- if (!sync && !forcePass) {
444
+ if (!syncPar && !forcePass) {
445
445
  releaseTester();
446
446
  }
447
447
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: origen_std_lib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-03 00:00:00.000000000 Z
11
+ date: 2020-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: origen
@@ -131,8 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  - !ruby/object:Gem::Version
132
132
  version: 1.8.11
133
133
  requirements: []
134
- rubyforge_project:
135
- rubygems_version: 2.7.7
134
+ rubygems_version: 3.1.4
136
135
  signing_key:
137
136
  specification_version: 4
138
137
  summary: Test program interface drivers for the Origen tester standard library