sysinit.h 1.4 KB

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