Changes for page Arduino and SCCharts
Last modified by Alexander Schulz-Rosengarten on 2023/09/11 16:17
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -56,10 +56,10 @@ 56 56 {{code language="sct" theme="Eclipse" title="Floodlight.sct"}} 57 57 scchart BlinkyModel { 58 58 59 - @Wrapper Clock, "500"59 + @Wrapper Clock, 500 60 60 input bool clock; 61 61 62 - @Wrapper DigitalWrite, "13"62 + @Wrapper DigitalWrite, 13 63 63 output bool light; 64 64 65 65 initial state lightOff ... ... @@ -74,19 +74,25 @@ 74 74 75 75 The annotations on the input and output variable are used to define which wrapper code is used to set / read them. **@Wrapper Clock, "500"** will set the input variable to true for one tick every 500ms. **@Wrapper DigitalWrite, "13"** will set pin 13 to HIGH if the variable is true and to LOW if it is false. We assume that an **LED is connected** to the Arduino board on **pin 13**. 76 76 77 -The available wrapper code snippets are defined in the //s nippets// directory of the project in ftl files (FreeMarker template files). The table below gives an overview of the available wrapper code snippets.77 +The available wrapper code snippets are defined in the //assets// directory of the project in ftl files (FreeMarker template files). In the default configuration of a new SCCharts project for Arduino, the file //main.ftl// is processed to create the entry point of the program. Thus it includes other templates containing the available code snippets. The table below gives an overview of the available wrapper code snippets. 78 78 79 79 **Note: **To view ftl files with highlighting, you may want to install the //FreeMarker IDE// feature from the JBoss Tools. However, this is not necessary to work with KIELER. JBoss Tools is available in the Eclipse Market Place and via update site. The update site for stable releases isĀ [[http:~~/~~/download.jboss.org/jbosstools/neon/stable/updates/ >>url:http://download.jboss.org/jbosstools/neon/stable/updates/||rel="nofollow" shape="rect" class="external-link"]]. Note that only the //FreeMarker IDE// feature is required (Abridged JBoss Tools > FreeMarker IDE).** 80 80 ** 81 81 82 -=== Launchthe project: ===82 +=== Build the project: === 83 83 84 - With the mouse over theSCTfile in the project explorer,perform//RightClick>RunAs>KiCoCompilation.//84 +After the modeling is done, the project can be built. Select //Project > Build Project//. This will create a new folder //kieler-gen// with the compiled model file. Further the wrapper code for the model is processed. After the build finished sucessfully, the ino file for the project has been updated with the new wrapper code for the model, and thus the project can be deployed to the Arduino board. The Eclipse Arduino Plugin provides an upload button for this task in the toolbar. 85 85 86 - Alaunch config is created, which compiles the model to C code andcreates wrapper code from theannotationsn themodelfile. Afterwardsthisoutputis compiledand deployed to the Arduinoboard, by using the launch shortcutfrom theArduinoPlugin. If any errors occur, you can see them in the ConsoleView.86 +==== Excluding the simulation folder from the CDT build ==== 87 87 88 - Fora deeper understandingof theprojectlaunchandinitialization,takealook atthe[[wiki pageforProm>>url:http://rtsys.informatik.uni-kiel.de/confluence/pages/viewpage.action?pageId=13762626||shape="rect"]].88 +A simulation of models is created as part of a build inside //kieler-gen/sim/bin//. The files inside the //sim// folder are compiled separately and should not be compiled using the CDT. Otherwise errors will occur, for example because every simulation has its own main function and the CDT expects only one for the project. 89 89 90 +Thus the folder //kieler-gen/sim// has to be excluded from the CDT build. Therefore select the folder and do Right Click > Resource Configurations > Exclude From Build. 91 + 92 +=== Simulating the model === 93 + 94 +To use the simulation inside the folder //kieler-gen/sim/bin//, first change to the Simulation Perspective, which provides new buttons in the toolbar. The executables in the //bin// folder can then be launched via //Right Click > KIELER Simulation//. The output of a running simulation can be seen in the Data Pool View. 95 + 90 90 === Available Wrapper Code Snippets === 91 91 92 92 There are several wrapper code snippets that can be used as annotations on input and output variables in the model file. These snippets are inserted in the main file template as part of the project launch. The available snippets are listed below.
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -3214547 21 +32145476 - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/3214547 2/Arduino and SCCharts1 +https://rtsys.informatik.uni-kiel.de/confluence//wiki/spaces/KIELER/pages/32145476/Arduino and SCCharts