|
186 | 186 | // <q>Initialize Event Recorder |
187 | 187 | // <i> Initialize Event Recorder before FreeRTOS kernel start. |
188 | 188 | // <i> Default: 1 |
189 | | -#define configEVR_INITIALIZE 1 |
| 189 | +#define configEVR_INITIALIZE 1 |
190 | 190 |
|
191 | 191 | // <e>Setup recording level filter |
192 | 192 | // <i> Enable configuration of FreeRTOS events recording level |
193 | 193 | // <i> Default: 1 |
194 | | -#define configEVR_SETUP_LEVEL 1 |
| 194 | +#define configEVR_SETUP_LEVEL 1 |
195 | 195 |
|
196 | 196 | // <o>Tasks functions |
197 | 197 | // <i> Define event recording level bitmask for events generated from Tasks functions. |
198 | 198 | // <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 |
201 | 201 |
|
202 | 202 | // <o>Queue functions |
203 | 203 | // <i> Define event recording level bitmask for events generated from Queue functions. |
204 | 204 | // <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 |
207 | 207 |
|
208 | 208 | // <o>Timer functions |
209 | 209 | // <i> Define event recording level bitmask for events generated from Timer functions. |
210 | 210 | // <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 |
213 | 213 |
|
214 | 214 | // <o>Event Groups functions |
215 | 215 | // <i> Define event recording level bitmask for events generated from Event Groups functions. |
216 | 216 | // <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 |
219 | 219 |
|
220 | 220 | // <o>Heap functions |
221 | 221 | // <i> Define event recording level bitmask for events generated from Heap functions. |
222 | 222 | // <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 |
225 | 225 |
|
226 | 226 | // <o>Stream Buffer functions |
227 | 227 | // <i> Define event recording level bitmask for events generated from Stream Buffer functions. |
228 | 228 | // <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 |
231 | 231 | // </e> |
232 | 232 | // </h> |
233 | 233 |
|
|
0 commit comments