/** @(#)reset_mcu.h <17-Oct-2013 14:24:10 bob p> * Last Time-stamp: <17-Oct-2013 14:24:55 bob p> * * \file reset_mcu.h * \brief Force the MCU to reset. * */ /*lint -save -e755 -e756 Disable warning(s), this file only, global macro/typedef 'Symbol' (Location) not referenced */ #ifndef _RESET_MCU_H_ #define _RESET_MCU_H_ (1) #ifdef DEFINE_SPACE_RESET_MCU_H #define EXTERN_RESET_MCU #else #define EXTERN_RESET_MCU extern #endif #if defined(__cplusplus) && __cplusplus extern "C" { #endif void __attribute__ ((noreturn)) reset_mcu( void ); #if defined(__cplusplus) && __cplusplus } #endif #endif /* _RESET_MCU_H_ */ /*lint -restore */