EventRecorderConf.h.base@1.1.0 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*------------------------------------------------------------------------------
  2. * MDK - Component ::Event Recorder
  3. * Copyright (c) 2016-2018 ARM Germany GmbH. All rights reserved.
  4. *------------------------------------------------------------------------------
  5. * Name: EventRecorderConf.h
  6. * Purpose: Event Recorder Configuration
  7. * Rev.: V1.1.0
  8. *----------------------------------------------------------------------------*/
  9. //-------- <<< Use Configuration Wizard in Context Menu >>> --------------------
  10. // <h>Event Recorder
  11. // <o>Number of Records
  12. // <8=>8 <16=>16 <32=>32 <64=>64 <128=>128 <256=>256 <512=>512 <1024=>1024
  13. // <2048=>2048 <4096=>4096 <8192=>8192 <16384=>16384 <32768=>32768
  14. // <65536=>65536
  15. // <i>Configures size of Event Record Buffer (each record is 16 bytes)
  16. // <i>Must be 2^n (min=8, max=65536)
  17. #define EVENT_RECORD_COUNT 64U
  18. // <o>Time Stamp Source
  19. // <0=> DWT Cycle Counter <1=> SysTick <2=> CMSIS-RTOS2 System Timer
  20. // <3=> User Timer (Normal Reset) <4=> User Timer (Power-On Reset)
  21. // <i>Selects source for 32-bit time stamp
  22. #define EVENT_TIMESTAMP_SOURCE 0
  23. // <o>Time Stamp Clock Frequency [Hz] <0-1000000000>
  24. // <i>Defines initial time stamp clock frequency (0 when not used)
  25. #define EVENT_TIMESTAMP_FREQ 0U
  26. // </h>
  27. //------------- <<< end of configuration section >>> ---------------------------