web page logo for WMBatch

WMBatch Revision History


This page summarizes the changes, enhancements and fixes to the WMBatch program.


v1.39 [12/12/2023]

G85 HEX-4 Write Fix

Fixed the G85 writer so that it writes the correct attribute to identify a bin format of HEXADECIMAL-4.


SEMI-E142 DECIMAL-6 Bin Codes

We were recently presented with a SEMI E-142 file where the bin code was defined as ASCII with 6 characters. Added support for the DECIMAL-6 bin format for SEMI-E142 wafer maps.




v1.38 [12/11/2023]

G85 with Hexadecimal-4 Bin Codes

We recently ran across a G85 map file that used Integer2 (which we are calling Hexadecimal-4) bin codes which we did not support. This has been added to the list of supported bin code types.


MAP 001 Bug Fix

We fixed a bug reading MAP 001 format files reported by a customer.


SECS/EG Binary Map Parser Bug Fixed

Customer reported a bug in reading a SECS/EG binary map file. Fixed a bug that corrected this.




v1.37 [08/10/2023]

Added support for reading/writing the new BEIJING wafer map format.




v1.36 [03/26/2023]

Support for ASCII files encoded using UTF-16 (instead of UTF-8) is now supported. Please note that this is not a full support for Unicode but rather uses just the 8 bits supported by UTF-8. When saving an ascii format, the output is encoded as UTF-8.




v1.35 [02/02/2023]

Updated licensing library to support product ID=13902




v1.33 [11/08/2022]

Added TEL(P-12) Format

Added support for parsing and writing a new wafer map format - TEL(P-12). This file uses the .RMP file plus supporting ones and requires a different license than the TEL P8.

Modified TEL P8 Parser

Modified the TEL(P-8) parser to open wafer map files even if the supporting format, lot and map files are not found in the same folder.




v1.32 [10/12/2022]

UF3000 Reader Module Update

This version improves the parsing of UF3000 files. In addition to the pass/edge/fail flags in the wafer map die results, the new version now also reads the category data and interpret it as a bin code. This allows more differentiation, primarily among the fail devices.




v1.31 [10/02/2022]

TELP8

Modified the TEL(P-8) parser so that if more records are found in the file beyond the 1 byte record count data field, those records will be read and added to the wafer map. This is helpful when the number of records exceeds 256 entries, which is the maximum allowed for the TEL(P-8) spec.

Modified the TEL(P-8) writer so that if the number of contiguous devices is larger than 255, multiple records will be written to ensure that the maximum device count for each record does not exceed 255.




v1.29 05/16/2022

Added New Directives for Setting Reference Device Location

a) Set a Reference Device by Column and Row

reference device <number> <col> <row>

The default origin/axis direction is upper left = 0,0 with increasing X to the right and increasing Y down. However you can also use the directive "wafer coordinates" to use the wafer coordinates set by the map file.




b) Set a Reference Device by XY Position

reference device <number> xy <x> <y> [<units>]

This directive is useful only for map file formats that use a physical distance for defining the location of the reference coordinate.




v1.27 04/29/2022

Added New Directives

Added new commands to support setting the wafer origin and reference device column and row. See the command documentation for complete details.




v1.26 04/22/2022

New Format - Royce XML

A new format, Royce XML - used by the Royce MP-300 machine - can now be read and written. The Royce XML is based on SEMI E-142 but uses some unique data fields including bin colors. We developed this specifically for a customer who had a Royce MP-300 but who did not have software installed on it that could read other Map file formats.




v1.25 03/25/2022

Update to latest WMLib

Updated to use WMLib dated March 25, 2022.

KLARF

Added support for a new wafer map format parser - KLARF.

Tel P8 Parser

Added support for a new variant to the TEL(P-8) wafer map format to parse, or ignore the PASS/FAIL/UNTESTED quality of devices in the array. This is an additional byte of data which can be set for each device in the array.

Tel P8 WAFCONT.DAT

Added writing WAFCONT.DAT file when saving TEL(P-8) wafer maps. This is in support of importing a TEL P8 binary map file to drive the TEL P8 as an inker instead of a prober.

CSV Parser

Now supports CSV files where the bin length was not constant - i.e. you can have the following CSV

0,0,1
0,1,25

Prior to this one could not mix bin codes of length 1 character with bincodes of length 2 characters. Repeat Loop Fix

Corrected an error in the directory repeat loop.




v1.24 02/07/2022

Preserve Bin Format When Converting Map

Changing wafer map formats will keep the bin format the same provided that both the source and target formats support that bin format.

Padding Bin Values

When padding bin values the padding will now take place from the left, not right. So for example if you are going from CSV value of 1 to a HEX bin format the 1 will be mapped to 0x01 and not to 0x10.




v1.23 02/03/2022

New TEL P8 Read/Write Options

The configuration file for TEL P8 now includes variant flags for the reader and writer which control their behavior. This has become necessary because we are encountering in the field TEL P8 files with different headers and with different usages of the bin code bytes.

If the variant value = 0 then the behavior of the program (as we interpret the specification) does not change.

If the variant value = 1, then the program expects that the TEL P8 file has a 25 byte header consisting of 20 bytes describing the LOT_ID followed by 5 bytes of the space character.

If the variant value = 2, then the bin value byte comes before the device flag byte. (the default is to expect the device flag byte first, followed by the bin value byte.)

if the variant value = 3, then this is equivalent to activating both variant 1 and variant 2.

If no variant value is set, then the default is assumed (variant value = 0)

The keywords used to set the variant in the c:\wcad\WMEdit\WMConfig\WMFormats\TEL(P-8).txt are:

INPUT_VARIANT=N
OUTPUT_VARIANT=M







WMBatch 1.22 [01/25/2022]

CSV Writer

Modified the CSV Writer so that it does not output a line for any NULL devices. Previous versions output all of the NULL devices which is not necessary since each line specifies the X,Y position in the array.




WMBatch 1.19 [10/26/2021]

WWF Reader

Modified the WWF format to use ASCII-2 bin format instead of HEXADECIMAL-2. This affected how the bin mapping would work.

SECS-EG Binary Parser

Fixed a bug in the SECS-EG parser associated with negative bin counts.

Command-line argument changed

To avoid confusion, changed the -batch_file:<filename> command line argument to -command_file:<filename>. This is because when running WMBatch, one normally must generate a DOS batch file (.bat) and a command file. By using the same terminology for both we were potentially producing confusion for users in our documentation.




WMBatch 1.18 [09/13/2021]

G85 Hex Support

Added support for HEXADECIMAL-2 bin format to the G85 wafer map format.




WMBatch 1.17 [08/19/2021]

Updated library to WMLIB 1.26

added support for UF-3000 binary input (no output)




WMBatch 1.16 [07/16/2021]

WWF Map File Support

Added support for a new wafer map format: WWF.

SEMI-E142 Support

Added support for a new wafer map format: SEMI-E142.

New Underlying Library

WMBatch now uses the (C++) WMCLib API




WMBatch 1.15 [05/20/2021]

New Input Format: TEL P8

Added support for a new wafer map binary format: TEL(P-8)




WMBatch 1.14 [04/27/2021]

1 digit output map

Added a simple 1 digit output map for some pick and place machines.

Enhance Log File

Added the date/time of the log data
Added bin code counts to log file

Bin Mapping

Fixed a bug when multiple input bin codes were mapped to the same output bin code.




WMBatch 1.13 [04/16/2021]

Bin Mapping Enhancements

Improved the way WMLib and WMBatch map bins from the input to the output database, removing unused bins as needed.




WMBatch 1.12 [04/14/2021]

G85 Null Bin

Fixed a bug where the G85 user-defined null bin was not being read correctly.




WMBatch 1.11 [04/13/2021]

New Wafer Fill/Trim Commands

Added new command file directives to fill regions for the wafer with a specific bin. This can be used to slice a large wafer map into multiple smaller ones.




WMBatch 1.10 [03/18/2021]

Viking Output

Modified the VIKING format writer to enforce the specifications for date code and matching file name. This change may cause the user-defined output file name to change to meet the requirements.

New Command File Directives

Added new batch commands to set the device and step size.




WMBatch 1.09 02/23/2020

STIF

Corrected problem in reading/mapping bin codes above ASCII 128.




WMBatch 1.08 12/22/2020

STIF

Added support for the STIF (ST Microelectronics) wafer map format.

Installer

Modified the installer to support the Flexera licensing dongle.




WMBatch 1.07 12/07/2020

Added Support for Viking binary map format

Added support for a binary wafer map format known as Viking (*.vik). Due to limited documentation the following assumptions have been made:




WMBatch 1.06 11/16/2020

New Format

Added support for SEMI G85

IBIS Bug Fix

Fixed some bugs discovered in the IBIS parser/writer.

Floating Point Computations

Improved the accuracy of floating point values when converting formats.

Multiple Wafer Maps in a Single File

Added support for saving multiple wafer map files when the input file contains multiple wafer maps -- provided the format supports it -- but the output wafer map format does not. For example, G85 can contain multiple maps within a single file but SINF cannot.

New Command Directives for Multi-Map Files

Added new command file directive to select a specific wafer for subsequent commands.




WMBatch v1.05 11/05/2020

New Map Formats Added: IBIS

New Input/Output Map Format IBIS was added to WMBatch list of supported formats.




WMBatch v1.04 10/23/2020

New Map Formats Added

New Input/Output Map Formats were added to WMBatch:




WMBatch v1.03 10/15/2020

Added ASY Format

Added support for a new wafer map format called ASY.

Added SECS-EG(TXT) Format

Added support for a format we call SECS(TXT).

Added new bin mapping commands to control bin quality and description.




WMBatch v1.02 10/08/2020

New Format: MAP001

A new ASCII format has been added we are calling MAP001. This was requested by a customer. It consists of a header and map. Each row of the map begins with:

MAP001
MAP002
MAP003

and so on.


New Commmand to Process all Files in Directory

A new command has been added that enables a user to tell the program to process all files in the input directory. The syntax is:

repeat start files in "input_directory_path"
open <FILE.EXT> format MAP001
convert format E5-1296
bin map 00 .
bin map XX X
bin map 01 1
bin map 99 F
save <FILE>_E5.txt
repeat end

In this example we have our input files (any qty) in our input_directory_path. The program will open each file (consecutively) it finds in that directory and then perform the commands such as convert, bin mapping and saving.




WMBatch v1.01 09/27/2020

Initial Release

This is the initial release of WMBatch.