Raspberry Pi HMI: Difference between revisions

From Axel Public Wiki
Jump to navigation Jump to search
(Created page with " Category:Supported boards")
 
No edit summary
Line 1: Line 1:
This article is intended to give some basic HMI support on the Raspberry PI runtime.<br>
The steps to follow are simply to modify the '''LLExecLinux.conf''' file, under directory '''/data/plc'''<br>
You have to uncomment out this section:
<runtime filename="./LLXRt_Linux_ARM_HMI.so" area="1" targetId="RaspPI_2p0" targetComm="RaspPI_HMI">
  <memory>
  <data size="0x80000"/>
  <databit size="0x0"/>
  <dataret size="0x0"/>
  <code size="0x800000"/>
  <debug size="0x400000"/>
  </memory>
  <tasks>
  <task name="Draw" id="0" period="20000" type="worker"/>
  <task name="Refresh" id="1" period="20000" type="worker"/>
  <task name="Trend" id="2" period="100000" type="worker"/>
  </tasks>
  <params>
  <param name="vnc_enable" value="false"/>
  </params>
</runtime>




[[Category:Supported boards]]
[[Category:Supported boards]]

Revision as of 13:22, 25 January 2018

This article is intended to give some basic HMI support on the Raspberry PI runtime.
The steps to follow are simply to modify the LLExecLinux.conf file, under directory /data/plc
You have to uncomment out this section:

<runtime filename="./LLXRt_Linux_ARM_HMI.so" area="1" targetId="RaspPI_2p0" targetComm="RaspPI_HMI">
 <memory>
  
  <databit size="0x0"/>
  <dataret size="0x0"/>
  
  <debug size="0x400000"/>
 </memory>
 <tasks>
  <task name="Draw" id="0" period="20000" type="worker"/>
  <task name="Refresh" id="1" period="20000" type="worker"/>
  <task name="Trend" id="2" period="100000" type="worker"/>
 </tasks>
 <params>
  <param name="vnc_enable" value="false"/>
 </params>
</runtime>