Skip to main content

Compiler Error C0078

Message: Unsupported type: '<data type>'

Possible error cause: The used type is not supported by the current device and therefore cannot be used.

Error correction: If possible, use a different type. For example, REAL instead of LREAL.

Example 364. Example of the error:
PROGRAM PLC_PRG
VAR
    value : LREAL;
END_VAR

Message:

C0078: Unsupported type: 'LREAL‘

Error correction:

PROGRAM PLC_PRG
VAR
    value : REAL;
END_VAR