298
[Coding Example 1]
<A>
<IP1>,b:1;
<Z>
[Return status example 1-1]
When data [8000 0000 4000 0001] is written to EPC supported tag
02 Start code
38 30 30 30 30 30 30 30 34 30 30 30 30 30 30 31 EPC code (16 bytes)
20 20 20 20 20 20 .........20 20 20 20 20 20 20 Unused area is space (80 bytes)
03 End code
* The data is consecutive in the actual use, and data is expressed in hexadecimal.
[Return status example 1-2]
When reading from EPC supported tag is failed
02 Start code
45 50 43 5F 54 61 67 5F 45 72 72 20 20 20 20 20 Return "EPC_Tag_Err" in ASCII
20 20 20 20 20 20 .........20 20 20 20 20 20 20 Unused area is space (85 bytes)
03 End code
* The data is consecutive in the actual use, and data is expressed in hexadecimal.
[Coding Example 2]
Read the USER area of tag in hexadecimal specification
<A>
<IP1>,U;
<Z>
[Return status example 2-1]
The USER area of the tag is "ABCDEFGH", and reading in hexadecimal is succeeding
02 Start code
44 41 44 42 44 43 44 44 44 45 44 46 44 47 44 48 USER area data (16 bytes)
20 20 20 20 20 20 .........20 20 20 20 20 20 20 Unused area is space (112 bytes)
03 End code
[Return status example 2-2]
The USER area reading in hexadecimal is failed
02 Start code
45 50 43 5F 54 61 67 5F 45 72 72 20 20 20 20 20 Return "EPC_Tag_Err" in ASCII
20 20 20 20 20 20 .........20 20 20 20 20 20 20 Unused area is space (117 bytes)
03 End code
[Coding Example 3]
Read the USER area of tag in ASCII specification
<A>
<IP1>,u;
<Z>
[Return status example 3-1]
The USER area of the tag is "ABCDEFGH", and reading in ASCII is succeeding
02 Start code
31 30 30 30 38 2C Reading success: 1 + Data amount: 0008 + Comma
41 42 43 44 45 46 47 48 USER area data "ABCDEFGH" (8 bytes)
03 End code
[Return status example 3-2]
The USER area reading in ASCII is failed
02 Start code
30 30 30 31 31 2C Reading failure: 0 + Data amount: 0011 + Comma
45 50 43 5F 54 61 67 5F 45 72 72 Character string "EPC_Tag_Err" (11 bytes)
03 End code