1 /******************************************************************************
2 * @brief provide system init routine/configuration for KExx.
3 *
4 *******************************************************************************/
5 
6 /********************************************************************/
7 
8 #ifndef SYSINIT_H_
9 #define SYSINIT_H_
10 
11 /******************************************************************************
12 * Includes
13 ******************************************************************************/
14 
15 /******************************************************************************
16 * Constants
17 ******************************************************************************/
18 
19 
20 /******************************************************************************
21 * Macros
22 ******************************************************************************/
23 #define SIM_SCGC_VALUE      0x00003000L
24 
25 
26 /******************************************************************************
27 * Global variables
28 ******************************************************************************/
29 
30 /******************************************************************************
31 * Global functions
32 ******************************************************************************/
33 void sysinit (void);
34 void enable_abort_button(void);
35 void end_test(void);
36 
37 /********************************************************************/
38 #endif /* SYSINIT_H_ */
39