Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.etrice.generator.c.tests.old/src-gen/GeneratorTest1/SS_Runner.c')
-rw-r--r--tests/org.eclipse.etrice.generator.c.tests.old/src-gen/GeneratorTest1/SS_Runner.c98
1 files changed, 49 insertions, 49 deletions
diff --git a/tests/org.eclipse.etrice.generator.c.tests.old/src-gen/GeneratorTest1/SS_Runner.c b/tests/org.eclipse.etrice.generator.c.tests.old/src-gen/GeneratorTest1/SS_Runner.c
index 1e74a1252..901f2e080 100644
--- a/tests/org.eclipse.etrice.generator.c.tests.old/src-gen/GeneratorTest1/SS_Runner.c
+++ b/tests/org.eclipse.etrice.generator.c.tests.old/src-gen/GeneratorTest1/SS_Runner.c
@@ -1,49 +1,49 @@
-/**
- * @author generated by eTrice
- *
- * this class contains the main function running component SS
- * it instantiates SS and starts and ends the lifecycle
- */
-
-
-#include "SS.h"
-
-#include "debugging/etLogger.h"
-#include "debugging/etMSCLogger.h"
-#include "platform/etPlatform.h"
-
-
-/**
- * main function
- * creates component and starts and stops the lifecycle
- */
-
-int main(void) {
- etUserEntry(); /* platform specific */
-
- etLogger_logInfo("*** T H E B E G I N ***");
- ET_MSC_LOGGER_OPEN("main");
-
- /* startup sequence of lifecycle */
- SS_init(); /* lifecycle init */
- SS_start(); /* lifecycle start */
-
- etUserPreRun(); /* platform specific */
-
- /* run Scheduler */
- SS_run();
-
- etUserPostRun(); /* platform specific */
-
- /* shutdown sequence of lifecycle */
- SS_stop(); /* lifecycle stop */
- SS_destroy(); /* lifecycle destroy */
-
- ET_MSC_LOGGER_CLOSE
- etLogger_logInfo("*** T H E E N D ***");
-
- etUserExit(); /* platform specific */
-
- return 0;
-}
-
+/**
+ * @author generated by eTrice
+ *
+ * this class contains the main function running component SS
+ * it instantiates SS and starts and ends the lifecycle
+ */
+
+
+#include "SS.h"
+
+#include "debugging/etLogger.h"
+#include "debugging/etMSCLogger.h"
+#include "platform/etPlatform.h"
+
+
+/**
+ * main function
+ * creates component and starts and stops the lifecycle
+ */
+
+int main(void) {
+ etUserEntry(); /* platform specific */
+
+ etLogger_logInfo("*** T H E B E G I N ***");
+ ET_MSC_LOGGER_OPEN("main");
+
+ /* startup sequence of lifecycle */
+ SS_init(); /* lifecycle init */
+ SS_start(); /* lifecycle start */
+
+ etUserPreRun(); /* platform specific */
+
+ /* run Scheduler */
+ SS_run();
+
+ etUserPostRun(); /* platform specific */
+
+ /* shutdown sequence of lifecycle */
+ SS_stop(); /* lifecycle stop */
+ SS_destroy(); /* lifecycle destroy */
+
+ ET_MSC_LOGGER_CLOSE
+ etLogger_logInfo("*** T H E E N D ***");
+
+ etUserExit(); /* platform specific */
+
+ return 0;
+}
+

Back to the top