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
8 *----------------------------------------------------------------------------*/
10 //-------- <<< Use Configuration Wizard in Context Menu >>> --------------------
14 // <o>Number of Records
15 // <8=>8 <16=>16 <32=>32 <64=>64 <128=>128 <256=>256 <512=>512 <1024=>1024
16 // <2048=>2048 <4096=>4096 <8192=>8192 <16384=>16384 <32768=>32768
18 // <i>Configures size of Event Record Buffer (each record is 16 bytes)
19 // <i>Must be 2^n (min=8, max=65536)
20 #define EVENT_RECORD_COUNT 64U
22 // <o>Time Stamp Source
23 // <0=> DWT Cycle Counter <1=> SysTick <2=> CMSIS-RTOS2 System Timer
24 // <3=> User Timer (Normal Reset) <4=> User Timer (Power-On Reset)
25 // <i>Selects source for 32-bit time stamp
26 #define EVENT_TIMESTAMP_SOURCE 0
28 // <o>Time Stamp Clock Frequency [Hz] <0-1000000000>
29 // <i>Defines default time stamp clock frequency (0 when not used)
30 #define EVENT_TIMESTAMP_FREQ 0U
34 //------------- <<< end of configuration section >>> ---------------------------