Search found 58 matches

by OllieK
Sun Jan 24, 2021 2:09 am
Forum: IDEs for ESP-IDF
Topic: Anyone managed to get debugging working with IDF 4.1 / VS Code / Windows
Replies: 25
Views: 23516

Re: Anyone managed to get debugging working with IDF 4.1 / VS Code / Windows

@espdorian, I do confirm that I am running the JTAG debugger within VSC both with and without the serial monitor. I did start the testing using ESP-Prog. In that configuration, I had the serial monitor connected either through the target system USB connector or through the ESP-Prog serial interface....
by OllieK
Fri Jan 22, 2021 9:01 am
Forum: General Discussion
Topic: move to esp32 from stm32
Replies: 2
Views: 3195

Re: move to esp32 from stm32

I have been a long time developer on STM32F1/F4/F7/H7 platforms and used several IDEs for that, Now I am learning the ESP32 development principles with ESP IDF. I did experimentation with Arduino, Platformio, Eclipse, and VS Code . For the best debugging experience, I have selected VSC as my ESP32 I...
by OllieK
Fri Jan 22, 2021 2:32 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF Extension, Project Version Management
Replies: 3
Views: 4677

Re: ESP-IDF Extension, Project Version Management

I did check my versioning procedure with IDF 4.1/0.6.1 This is an example of the project version management based on the hello_world template 1. Prepare for ESP Projects - Create a folder for your ESP Projects, such as C:\Users\name\Documents\ESP_Projects - Create a folder for hello_world project, s...
by OllieK
Thu Jan 21, 2021 10:22 pm
Forum: IDEs for ESP-IDF
Topic: ESP-IDF Extension, Project Version Management
Replies: 3
Views: 4677

Re: ESP-IDF Extension, Project Version Management

Perhaps, I didn't describe the use case clearly. It can be assumed that all new projects start from an existing IDF example project. The core question is how to keep multiple versions of the project without github or similar version management tool. In the other IDE tools that I have used, the inter...
by OllieK
Thu Jan 21, 2021 9:42 pm
Forum: IDEs for ESP-IDF
Topic: Anyone managed to get debugging working with IDF 4.1 / VS Code / Windows
Replies: 25
Views: 23516

Re: Anyone managed to get debugging working with IDF 4.1 / VS Code / Windows

I have not touched lounch,json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "espidf", "name": "Launch", ...
by OllieK
Thu Jan 21, 2021 4:39 am
Forum: Hardware
Topic: ESP32 I2S Data Stream Problem
Replies: 2
Views: 2473

Re: ESP32 I2S Data Stream Problem

The system constant MAX_DMA_BUFFER (1024) is the maximum value for i2s_config.dma_buf_len. It cannot be increased. My application allocates buffers and DMA for 256 LEDs, but in the debugging tests I did use only 3 LEDs. In the background, there are no major interrupts. If I cannot solve this, I need...
by OllieK
Thu Jan 21, 2021 3:03 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF VScode monitor
Replies: 8
Views: 9302

Re: ESP-IDF VScode monitor

Thanks for Espressif IDF 0.6.1, this problem in 0.6.0 is now fixed.
by OllieK
Thu Jan 21, 2021 1:42 am
Forum: Hardware
Topic: ESP32 I2S Data Stream Problem
Replies: 2
Views: 2473

ESP32 I2S Data Stream Problem

I am using an oscilloscope to investigate the problems I have when driving a 16x16 WS2812B LED array with ESP32 Pico D4 using I2S interface. Occasionally I am seeing a gap in the beginning and end of the color bit stream. All the bits are there, but it seems that the I2S DMA goes to sleep for 4..6 u...
by OllieK
Wed Jan 20, 2021 1:21 am
Forum: ESP-IDF 中文讨论版
Topic: idf.py 下载程序,MD5不匹配导致下载失败
Replies: 2
Views: 5040

Re: idf.py 下载程序,MD5不匹配导致下载失败

There can be several reasons for this error message. In my setup, I am seeing this error message quite often. In all those cases it is related to the JTAG debugger. After I have disconnect and reconnect the debugger USB cable, the problem goes away. I have not been able to determine why and when the...
by OllieK
Tue Jan 19, 2021 6:58 am
Forum: Hardware
Topic: ESP32-PICO-KIT Where and what are pin out numbers for SPI devices?
Replies: 4
Views: 7280

Re: ESP32-PICO-KIT Where and what are pin out numbers for SPI devices?

I do agree that it is not a good practice to introduce vendor specific terminology, when there are already common practices. Here the key is that SPID = MOSI SPIQ = MISO I do recommend that you use VSPI in PICO pins 18, 19, and 23 because the HSPI pins 11, 12, 13, and 14 do collide with the JTAG pin...