-
Notifications
You must be signed in to change notification settings - Fork 295
OIL language
Jean-Luc Béchennec edited this page Oct 26, 2015
·
9 revisions
The application you are going to build must be described using the OIL language. An OIL file have 2 parts , the IMPLEMENTATION part and the CPU part. In the IMPLEMENTATION you can set default values for the objects of your application. In the CPU part you describe the application. The first item in an OIL file is the OIL_VERSION attributes. It defines the kind of objects you may use in the CPU part. 2 values are allowed:
-
OIL_VERSION = "2.5";is used for an OSEK/VDX application; -
OIL_VERSION = "3.1";is used for an AUTOSAR 3.1 application; -
OIL_VERSION = "4.0";is used for an AUTOSAR 4 application.
... to be continued