Merge branch 'feature/update-openocd-to-v0.12.0-esp32-20230921' into 'master'

Feature/update openocd to v0.12.0 esp32 20230921

Closes IDF-7920

See merge request espressif/esp-idf!26316
This commit is contained in:
Erhan Kurubas
2023-10-17 16:09:39 +08:00
3 changed files with 29 additions and 28 deletions
+3 -2
View File
@@ -175,8 +175,9 @@ long gcov_rtio_ftell(void *stream)
int gcov_rtio_feof(void *stream)
{
ESP_EARLY_LOGV(TAG, "%s", __FUNCTION__);
return 0; // esp_apptrace_feof(ESP_APPTRACE_DEST_TRAX, stream); // TODO IDF-7920
int ret = esp_apptrace_feof(ESP_APPTRACE_DEST_TRAX, stream);
ESP_EARLY_LOGV(TAG, "%s(%p) = %d", __FUNCTION__, stream, ret);
return ret;
}
void gcov_rtio_setbuf(void *arg1 __attribute__ ((unused)), void *arg2 __attribute__ ((unused)))