Overview of Logging/Trace Function1-101.4 Data Format• The format of the data to be output as logging data and saved in a file varies according tothe type of devices.• For the details of setting methods, refer to “2.4 Registration of Device Information”. Device type and data formatData typeOutput type to filesNo. ofoccupiedwordsData type No. ofcharacters Range or sampleBIT Bit data 1 words 0 or 1 1 0 or 1US Unsigned 16-bit integer 1 words Decimal integer(unsigned) 5 0 to 65536SS Signed 16-bitinteger 1 words Decimal integer(signed) 6 -32768 to 32767UL Unsigned 32-bit integer 2 words Decimal integer(unsigned) 10 0 to 4294967295SL Signed 32-bitinteger 2 words Decimal integer(signed) 11 -2147483648to 2147483647SFSingle-precisionfloating pointreal number2 wordsDecimal orexponential form(auto)13 -1.175494E-38Hex 1 words 1 words Hexadecimal integer(unsigned) 4 0 to FFFFHex 2 words 2 words Hexadecimal integer(unsigned) 8 0 to FFFF FFFFSTR String data 1 to 20 bytes Character data 1 to 20 + 2 "ABCD"(Note 1) Decimal integers (US, SS, UL, SL) and hexadecimal integers (Hex) are output in zero suppression format.(Note 2) Decimal integers (US) are output in 5 digits when a specified decimal point output position value is 0, in 6digits when it is 1-4, and in 7 digits when it is 5.(Note 3) Decimal integers (SS) are output in 6 digits when a specified decimal point output position value is 0, in 7digits when it is 1-4, and in 8 digits when it is 5.(Note 4) Decimal integers (UL) are output in 10 digits when a specified decimal point output position value is 0, in 11digits when it is 1-9, and in 12 digits when it is 10.(Note 5) Decimal integers (SL) are output in 11 digits when a specified decimal point output position value is 0, in 12digits when it is 1-9, and in 13 digits when it is 10.(Note 6) For a signed integer (SS, SL), a sign is output at the beginning and “+” is replaced with a space.(Note 7): Zero is added before and after decimal point by the settings of data value and decimal point output position,and the data is output.When "Data type" is US and data value is "12345", the output value is "0.12345" when setting "Decimal point"to 5.When "Data type" is US and data value is "123", the output value is "0.00123" when setting "Decimal point" to 5.(Note 8) Double quotation marks “ “ are added before and after character string data.