Select one of the symbols to view example projects that use it.
 
Outline
#include "eri.h"
#include "xtensa-debug-module.h"
#include "esp_log.h"
TAG
#define ESP_DBG_STUBS_TRAX_REG
esp_dbg_stubs_ll_init(void *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_system/port/arch/xtensa/debug_stubs.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ // This module implements debug/trace stubs. The stub is a piece of special code which can invoked by OpenOCD // Currently one stub is used for GCOV functionality // #include "eri.h" #include "xtensa-debug-module.h" #include "esp_log.h" const static char *TAG = "esp_dbg_stubs"; #define ESP_DBG_STUBS_TRAX_REG ERI_TRAX_TRIGGERPC void esp_dbg_stubs_ll_init(void *stub_table) { eri_write(ESP_DBG_STUBS_TRAX_REG, (uint32_t)stub_table); ESP_LOGV(TAG, "%s stubs %"PRIx32, __func__, eri_read(ESP_DBG_STUBS_TRAX_REG)); }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.