Skip to content

Commit 92f4016

Browse files
committed
Connect traceENTER and traceRETURN trace events to Event Recorder events
1 parent deb9d0a commit 92f4016

5 files changed

Lines changed: 9040 additions & 734 deletions

File tree

CMSIS/RTOS2/FreeRTOS/Config/ARMCM/FreeRTOSConfig.h

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -186,48 +186,48 @@
186186
// <q>Initialize Event Recorder
187187
// <i> Initialize Event Recorder before FreeRTOS kernel start.
188188
// <i> Default: 1
189-
#define configEVR_INITIALIZE 1
189+
#define configEVR_INITIALIZE 1
190190

191191
// <e>Setup recording level filter
192192
// <i> Enable configuration of FreeRTOS events recording level
193193
// <i> Default: 1
194-
#define configEVR_SETUP_LEVEL 1
194+
#define configEVR_SETUP_LEVEL 1
195195

196196
// <o>Tasks functions
197197
// <i> Define event recording level bitmask for events generated from Tasks functions.
198198
// <i> Default: 0x05
199-
// <0x00=>Off <0x01=>Errors <0x05=>Errors + Operation <0x0F=>All
200-
#define configEVR_LEVEL_TASKS 0x05
199+
// <0x00=>Off <0x01=>Errors <0x03=>Errors + API <0x05=>Errors + Operation <0x07=>Errors + API + Operation <0x0F=>All
200+
#define configEVR_LEVEL_TASKS 0x05
201201

202202
// <o>Queue functions
203203
// <i> Define event recording level bitmask for events generated from Queue functions.
204204
// <i> Default: 0x05
205-
// <0x00=>Off <0x01=>Errors <0x05=>Errors + Operation <0x0F=>All
206-
#define configEVR_LEVEL_QUEUE 0x05
205+
// <0x00=>Off <0x01=>Errors <0x03=>Errors + API <0x05=>Errors + Operation <0x07=>Errors + API + Operation <0x0F=>All
206+
#define configEVR_LEVEL_QUEUE 0x05
207207

208208
// <o>Timer functions
209209
// <i> Define event recording level bitmask for events generated from Timer functions.
210210
// <i> Default: 0x05
211-
// <0x00=>Off <0x01=>Errors <0x05=>Errors + Operation <0x0F=>All
212-
#define configEVR_LEVEL_TIMERS 0x05
211+
// <0x00=>Off <0x01=>Errors <0x03=>Errors + API <0x05=>Errors + Operation <0x07=>Errors + API + Operation <0x0F=>All
212+
#define configEVR_LEVEL_TIMERS 0x05
213213

214214
// <o>Event Groups functions
215215
// <i> Define event recording level bitmask for events generated from Event Groups functions.
216216
// <i> Default: 0x05
217-
// <0x00=>Off <0x01=>Errors <0x05=>Errors + Operation <0x0F=>All
218-
#define configEVR_LEVEL_EVENTGROUPS 0x05
217+
// <0x00=>Off <0x01=>Errors <0x03=>Errors + API <0x05=>Errors + Operation <0x07=>Errors + API + Operation <0x0F=>All
218+
#define configEVR_LEVEL_EVENTGROUPS 0x05
219219

220220
// <o>Heap functions
221221
// <i> Define event recording level bitmask for events generated from Heap functions.
222222
// <i> Default: 0x05
223-
// <0x00=>Off <0x01=>Errors <0x05=>Errors + Operation <0x0F=>All
224-
#define configEVR_LEVEL_HEAP 0x05
223+
// <0x00=>Off <0x01=>Errors <0x03=>Errors + API <0x05=>Errors + Operation <0x07=>Errors + API + Operation <0x0F=>All
224+
#define configEVR_LEVEL_HEAP 0x05
225225

226226
// <o>Stream Buffer functions
227227
// <i> Define event recording level bitmask for events generated from Stream Buffer functions.
228228
// <i> Default: 0x05
229-
// <0x00=>Off <0x01=>Errors <0x05=>Errors + Operation <0x0F=>All
230-
#define configEVR_LEVEL_STREAMBUFFER 0x05
229+
// <0x00=>Off <0x01=>Errors <0x03=>Errors + API <0x05=>Errors + Operation <0x07=>Errors + API + Operation <0x0F=>All
230+
#define configEVR_LEVEL_STREAMBUFFER 0x05
231231
// </e>
232232
// </h>
233233

0 commit comments

Comments
 (0)