Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_ESP32_SYSVIEW_H
#include <stdint.h>
#include "esp32_apptrace.h"
esp32_sysview_cmd_data
esp32_apptrace_cmd_ctx
esp32_sysview_cmd_init(struct esp32_apptrace_cmd_ctx *, struct command_invocation *, int, bool, const char **, int);
esp32_sysview_cmd_cleanup(struct esp32_apptrace_cmd_ctx *);
esp32_sysview_process_data(struct esp32_apptrace_cmd_ctx *, unsigned int, uint8_t *, uint32_t);
Files
loading...
SourceVuDevelopment ToolsOpenOCDsrc/target/espressif/esp32_sysview.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * ESP32 sysview tracing module * * Copyright (C) 2020 Espressif Systems Ltd. * ***************************************************************************//* ... */ #ifndef OPENOCD_TARGET_ESP32_SYSVIEW_H #define OPENOCD_TARGET_ESP32_SYSVIEW_H #include <stdint.h> #include "esp32_apptrace.h" struct esp32_sysview_cmd_data { /* Should be the first field. Generic apptrace command handling code accesses it */ struct esp32_apptrace_cmd_data apptrace; struct esp32_apptrace_dest data_dests[ESP32_APPTRACE_MAX_CORES_NUM]; bool mcore_format; uint32_t sv_acc_time_delta; unsigned int sv_last_core_id; int sv_trace_running; ...}; struct esp32_apptrace_cmd_ctx; int esp32_sysview_cmd_init(struct esp32_apptrace_cmd_ctx *cmd_ctx, struct command_invocation *cmd, int mode, bool mcore_format, const char **argv, int argc); int esp32_sysview_cmd_cleanup(struct esp32_apptrace_cmd_ctx *cmd_ctx); int esp32_sysview_process_data(struct esp32_apptrace_cmd_ctx *ctx, unsigned int core_id, uint8_t *data, uint32_t data_len); /* ... */ #endif /* OPENOCD_TARGET_ESP32_SYSVIEW_H */
Details
Show:
from
Types: Columns:
Click anywhere in the source to view detailed information here...