trace.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**************************************************************************//**
  2. * @file
  3. * @brief API for enabling SWO or ETM trace on DK3750 board
  4. * @author Energy Micro AS
  5. * @version 1.2.2
  6. ******************************************************************************
  7. * @section License
  8. * <b>(C) Copyright 2011 Energy Micro AS, http://www.energymicro.com</b>
  9. ******************************************************************************
  10. *
  11. * This source code is the property of Energy Micro AS. The source and compiled
  12. * code may only be used on Energy Micro "EFM32" microcontrollers.
  13. *
  14. * This copyright notice may not be removed from the source code nor changed.
  15. *
  16. * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Energy Micro AS has no
  17. * obligation to support this Software. Energy Micro AS is providing the
  18. * Software "AS IS", with no express or implied warranties of any kind,
  19. * including, but not limited to, any implied warranties of merchantability
  20. * or fitness for any particular purpose or warranties against infringement
  21. * of any proprietary rights of a third party.
  22. *
  23. * Energy Micro AS will not be liable for any consequential, incidental, or
  24. * special damages, or any other relief, or for any claim by any third party,
  25. * arising from your use of this Software.
  26. *
  27. *****************************************************************************/
  28. #ifndef __TRACE_H
  29. #define __TRACE_H
  30. /***************************************************************************//**
  31. * @addtogroup BSP
  32. * @{
  33. ******************************************************************************/
  34. #include <stdint.h>
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. void TRACE_ETMSetup(void);
  39. void TRACE_SWOSetup(void);
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43. /** @} (end group BSP) */
  44. #endif