tests/wxGlade/HMIFrame@wxglade_hmi/pyfile.xml
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Tue, 12 Sep 2017 16:49:35 +0300
changeset 1800 1711339585ce
parent 1462 9ee3a2dea7e8
permissions -rw-r--r--
make possible to turn off at compile time online debugging, logging
and external sync functionality

Defines TARGET_DEBUG_DISABLE, TARGET_LOGGING_DISABLE, TARGET_EXT_SYNC_DISABLE
allow to use generated PLC code in low-cost microcontrollers,
integrate into external programs and so on.

main.c:
extern void __run(void);
int main(void)
{
for(;;) {
__run();
// sleep common_ticktime__ ns
// add common_ticktime__ ns to __CURRENT_TIME
}
return 0;
}

Compile for example for arm bare-metal:
../build$ arm-none-eabi-gcc \
-DTARGET_DEBUG_DISABLE -DTARGET_LOGGER_DISABLE
-DTARGET_EXT_SYNC_DISABLE \
-flto -ffunction-sections -fdata-sections -I../../../../matiec/lib/C \
*.c \
-nodefaultlibs --specs=nano.specs -Wl,--static -Wl,--gc-section -Wl,--start-group -lc -lm -lnosys -lgcc -Wl,--end-group
1462
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     1
<?xml version='1.0' encoding='utf-8'?>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     2
<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     3
  <variables/>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     4
  <globals>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     5
    <xhtml:p><![CDATA[]]></xhtml:p>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     6
  </globals>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     7
  <init>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     8
    <xhtml:p><![CDATA[]]></xhtml:p>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
     9
  </init>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    10
  <cleanup>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    11
    <xhtml:p><![CDATA[]]></xhtml:p>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    12
  </cleanup>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    13
  <start>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    14
    <xhtml:p><![CDATA[]]></xhtml:p>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    15
  </start>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    16
  <stop>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    17
    <xhtml:p><![CDATA[]]></xhtml:p>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    18
  </stop>
9ee3a2dea7e8 Extended wxHMI test
Edouard Tisserant
parents:
diff changeset
    19
</PyFile>