Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8bf41170f738d385b411cb60a3cedc15586da3a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*******************************************************************************
 * Copyright (c) 2012 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Thomas Schuetz (initial contribution)
 *
 *******************************************************************************/

#ifndef _ETPLATFORMLIFECYCLE_H_
#define _ETPLATFORMLIFECYCLE_H_

/**
 * etPlatformLifecycle.h defines a generic interface for platform specific startup and shutdown functions
 * those functions are called at specific points during the lifecycle of an eTrice application
 * they can be used to integrate and execute platform or OS specific code
 *
 * */

#include "etDatatypes.h"


/**
 * Platform specific code, called at the start of the system startup of the main function
 * */
void etUserEntry(void);

/**
 * Platform specific code, called at the end of the startup right before the start of the actual application
 * */
void etUserPreRun(void);

/**
 * Platform specific code, called at the beginning of the shutdown right after before the stop of the actual application
 * */
void etUserPostRun(void);

/**
 * Platform specific code, called at the end of the system shutdown of the main function
 * */
void etUserExit(void);

#endif /* _ETPLATFORMLIFECYCLE_H_ */

Back to the top