
PG4UW
Note:
Serial quick turn programming (SQTP) is Microchip specified standard for serial
programming of Microchip PIC microcontrollers. Microchip PIC devices allows you to program
a unique serial number into each microcontroller. This number can be used as an entry code,
password, or ID number.
Serialization is done by using a series of RETLW (Return Literal W) instructions, with the
serial number bytes as the literal data. To serialize, you can use Incremental mode
serialization or From file mode serialization.
Incremental serialization offers serial number Split function. Serial number split allows usage
of incremental numbers separated into even or odd bytes and between each byte of serial
number RETLW instruction code is inserted.
From file serialization is using proprietary serial numbers file. This file can consist of various
serial numbers. The numbers can have format suitable for SQTP that means number RETLW
b1 RETLW b2 and so on. Note that PG4UW serial file format is not compatible with SQTP
serial file generated by Microchip MPLAB.
Example 2a:
Use of serialization split with RETLW instructions for Microchip PIC16F628 devices.
Device PIC16F628 has 14 bit wide instruction word. Instruction RETLW has 14-Bit Opcode:
Description
MSB 14-Bit
word LSB
RETLW
Return with literal in W
11
01xx
kkkk
kkkk
where xx can be replaced by 00 and k are data bits, i.e. serial number byte
Opcode of RETLW instruction is hexadecimal 34KKH where KK is data Byte (serial number
byte)
Let’s assume we want to write serial number 1234ABCDH as part of four RETLW instructions
to device PIC. The highest Byte of serial number is the most significant Byte. We want to
write the serial number to device program memory at address 40H. Serial number split us
very useful in this situation. Serialization without serial number split will write the following
number to buffer and device:
Address Data
0000080 CD AB 34 12 xx xx xx xx xx xx xx xx xx xx xx xx
Note:
address 80H is because buffer has byte organization and PIC has word organization
so it has equivalent program memory address 40H. When buffer has word organization x16,
the address will be 40H and number 1234ABCDH will be placed to buffer as following:
Address Data
0000040 ABCD 1234 xxxx xxxx xxxx xxxx xxxx xxxx
We want to use RETLW instruction so buffer has to be:
Address Data
0000040 34CD 34AB 3434 3412 xxxx xxxx xxxx xxxx
105
Summary of Contents for SEEprog
Page 7: ...Introduction Introduction 7...
Page 12: ...ELNEC s r o Quick Start 12...
Page 15: ...Detailed description Detailed description 15...
Page 16: ...ELNEC s r o BeeHive204 16...
Page 30: ...ELNEC s r o BeeProg2 BeeProg2C BeeProg 30...
Page 45: ...SmartProg2 SmartProg2 45...
Page 54: ...ELNEC s r o MEMprog2 54...
Page 61: ...SEEprog SEEprog 61...
Page 66: ...ELNEC s r o Setup 66...
Page 77: ...PG4UW PG4UW 77...
Page 144: ...ELNEC s r o PG4UWMC 144...
Page 154: ...ELNEC s r o Common notes 154...
Page 168: ...ELNEC s r o Troubleshooting and warranty 168...