Search found 22 matches

by joseMiguel
Thu Feb 22, 2024 10:46 am
Forum: ESP-IDF
Topic: ESP32S3 : How to include a Driver in My Project please ?
Replies: 2
Views: 793

Re: ESP32S3 : How to include a Driver in My Project please ?

Hello Thomas,

Try
>idf.py create-component <component name>

I do no know exactly if it is the right solution.
You should have new names of the I2C functions or methods.

Best regards

Jose Michel
by joseMiguel
Sun Feb 11, 2024 4:00 pm
Forum: ESP-IDF
Topic: ESP32-C3 / ESP32-H2 / EPS32-S3 how to build
Replies: 3
Views: 930

Re: ESP32-C3 / ESP32-H2 / EPS32-S3 how to build

Hello, Do you work on Linux or Windows? Do you use VSCode or EClipse. 1) If you use VSCode 1.a) Have you set the environment variables : IDF_PATH, IDF_TOOLS_PATH, EXTENSION_PATH, ... 1.2) Do you type install.bat or install.sh, export.bat or export.sh 1.3) THEN, you can type : idf.py build Regards Jo...
by joseMiguel
Wed Jan 24, 2024 5:55 pm
Forum: Hardware
Topic: ESP32C6 burning fuses
Replies: 1
Views: 726

Re: ESP32C6 burning fuses

Hello,

Perhaps you need to be in a privileged mode or something like that (Machine mode, ...).

Hope it will help you

José Michel
by joseMiguel
Thu Jan 18, 2024 7:36 am
Forum: ESP-IDF
Topic: Multiple Devices on SPI Bus
Replies: 2
Views: 885

Re: Multiple Devices on SPI Bus

Hi,

Sorry, if it is a silly question
I suppose that you have two CS (Chip Select "CS" or not Chip Select "nCS")
One for each external circuit?

Regards

José Michel
by joseMiguel
Tue Jan 09, 2024 8:07 am
Forum: IDEs for ESP-IDF
Topic: ESP32 Debugg with VSCode
Replies: 2
Views: 18775

Re: ESP32 Debugg with VSCode

Hello Temuko,

could you insert before "miDebuggerPath": the "MIMode" instruction

"MIMode": "gdb",
"miDebuggerPath": "your path to gdb",

Could you add the tasks.json file in your answer to verify it. How openocd is called

Hope it will help you

José Michel
by joseMiguel
Sat Dec 30, 2023 4:00 pm
Forum: ESP-IDF
Topic: ESP32-C3-DevkitM-1 and ESP-PROG and Platformio and VSCODE (Win10) problems
Replies: 1
Views: 1644

Re: ESP32-C3-DevkitM-1 and ESP-PROG and Platformio and VSCODE (Win10) problems

Hello, For those who want to use Platformio and the ESP_PROG debugger on Win10 I give your my platformio.ini who works [env:esp32-c3-devkitm-1] platform = espressif32 board = esp32-c3-devkitm-1 framework = espidf ; Set optimization level and amount of debug information generated by the compiler debu...
by joseMiguel
Thu Sep 14, 2023 1:35 pm
Forum: ESP-IDF
Topic: I don't succeed to launch GDB but i succeed to launch OPENOCD (ESP-IDF and ESP32-C3 with ESP-PROG and VSCODE and Win10)
Replies: 1
Views: 1786

Re: I don't succeed to launch GDB but i succeed to launch OPENOCD (ESP-IDF and ESP32-C3 with ESP-PROG and VSCODE and Win

Hello all, My local settings.json in the .vscode directory here below { "C_Cpp.intelliSenseEngine": "Tag Parser", "idf.adapterTargetName": "esp32c3", "idf.customExtraPaths": "C:\\Users\\josem\\.espressif\\tools\\xtensa-esp-elf-gdb\\11.2_20220823\\xtensa-esp-elf-gdb\\bin;C:\\Users\\josem\\.espressif\...
by joseMiguel
Thu Sep 14, 2023 10:34 am
Forum: ESP-IDF
Topic: I don't succeed to launch GDB but i succeed to launch OPENOCD (ESP-IDF and ESP32-C3 with ESP-PROG and VSCODE and Win10)
Replies: 1
Views: 1786

I don't succeed to launch GDB but i succeed to launch OPENOCD (ESP-IDF and ESP32-C3 with ESP-PROG and VSCODE and Win10)

Good Morning, I'am trying to make an ESP32-C3 based project. (ESP-IDF project and VSCODE on Win10) I would like to use the external debugger ESP-PROG I am stuck on launching the debugger with VSCODE Here below my launch.json { "version": "0.2.0", "configurations": [ // { // "preLaunchTask": "OpenOCD...
by joseMiguel
Wed Jun 14, 2023 1:30 pm
Forum: ESP-IDF
Topic: ESP32-C3-DevkitM-1 and ESP-PROG and Platformio and VSCODE (Win10) problems
Replies: 1
Views: 1644

ESP32-C3-DevkitM-1 and ESP-PROG and Platformio and VSCODE (Win10) problems

Hello, I am trying to debug ESP32-C3-DevkitM-1 board with ESP-PROG debugger. (I have already used built-in USB/JTAG interface, but i faced lot of problems with freertos, so i decided to go trough ESP-PROG) 1) I have burned the DIS_USB_JTAG fuse by typing : >espefuse.py --port COM11 burn_efuse DIS_JT...
by joseMiguel
Sat Apr 08, 2023 7:45 pm
Forum: ESP-IDF
Topic: VSCode is not including esp-idf/components/ path
Replies: 4
Views: 9547

Re: VSCode is not including esp-idf/components/ path

Hi, try the c_cpp_properties.json in (.vscode directory) I have added "${workspaceFolder}/**", in the "browse" part { "configurations": [ { "name": "ESP-IDF", "compilerPath": "", "includePath": [ "${config:idf.espIdfPath}/components/**", "${config:idf.espIdfPathWin}/components/**", "${config:idf.esp...