Search found 5 matches

by simark1979
Mon Sep 14, 2020 3:22 pm
Forum: IDEs for ESP-IDF
Topic: OpenOCD start/stop API
Replies: 1
Views: 2803

OpenOCD start/stop API

Is it possible to start/stop openocd from VSCode tasks via your extension API?
If I start OpenoOCD from my python script, your extension doesn`t update his state in statusbar.
So it`s much preferable to use native extension`s command.

Thank you!
by simark1979
Sun Sep 13, 2020 9:10 pm
Forum: IDEs for ESP-IDF
Topic: VSC debug start problem.
Replies: 1
Views: 2849

Re: VSC debug start problem.

I got solution. Espressivf`s debug adapter for strange reason doesn`t starts on my machine. Debuger via "Microsoft C/C++" extetion works, but buggy: works slow, starts randomly, need manual breakpoint add in the begin of app_main() function (tried to use "thb app_main" cmd, but it doesn`t work) Than...
by simark1979
Fri Sep 11, 2020 6:04 am
Forum: IDEs for ESP-IDF
Topic: VSC debug start problem.
Replies: 1
Views: 2849

VSC debug start problem.

I got the problem while starting debug in VSCode via ESP-IDF Debug Adapter So when I lanch debug, debug not starting. Step buttons disabled (see attachment) OpenOCD and ESP-IDF Debug Adapter logs in attachment. My lunch.json: { "version": "0.2.0", "configurations": [ { "type": "espidf", "name": "Lau...
by simark1979
Fri Sep 11, 2020 4:53 am
Forum: IDEs for ESP-IDF
Topic: Official VSCode Extension for ESP-IDF Projects - jtag upload
Replies: 3
Views: 4265

Re: Official VSCode Extension for ESP-IDF Projects - jtag upload

So made jtag-upload task. Tested under Windows only, but under Unix should work too Limitation: OpenOCD must be stopped before lunch this task. 1. Add new task in tasks.json: { "label": "Flash - Flash jtag", "type": "shell", "presentation": { "focus": true }, "command": "${config:idf.pythonBinPathWi...
by simark1979
Wed Sep 09, 2020 5:27 pm
Forum: IDEs for ESP-IDF
Topic: Official VSCode Extension for ESP-IDF Projects - jtag upload
Replies: 3
Views: 4265

Official VSCode Extension for ESP-IDF Projects - jtag upload

Question to extension developers:
When jtag uploading will be implemented in official extension?
Uploading via serial port takes to much time.
And in my case, impossible: my device has no serial port on pcb, jtag only
So I cannot use your extension(

Does anybody implemeted this future?

Thank you!