Search found 5 matches

by vazquezfran
Wed Oct 09, 2024 9:40 am
Forum: ESP-IDF
Topic: I2C slave interrupt entering for every address in the system
Replies: 5
Views: 1081

Re: I2C slave interrupt entering for every address in the system

so it may be that this interrupt triggers on every STOP seen on the bus even if the ESP is not actually addressed by the preceding transaction This is exactly the case because the interrupt enters for all the cases, reads, writes and for all the different addresses. Is it possible to get some suppo...
by vazquezfran
Wed Oct 09, 2024 8:22 am
Forum: ESP-IDF
Topic: I2C slave interrupt entering for every address in the system
Replies: 5
Views: 1081

Re: I2C slave interrupt entering for every address in the system

const i2c_slave_config_t i2c_slv_config = { .addr_bit_len = I2C_ADDR_BIT_LEN_7, // 7-bit address .clk_source = I2C_CLK_SRC_DEFAULT, // set the clock source .i2c_port = 0, // set I2C port number .send_buf_depth = 256, // set tx buffer length .scl_io_num = 7, // SCL gpio number .sda_io_num = 6, // SD...
by vazquezfran
Tue Oct 08, 2024 1:16 pm
Forum: ESP-IDF
Topic: I2C slave interrupt entering for every address in the system
Replies: 5
Views: 1081

I2C slave interrupt entering for every address in the system

Hello, I am working with a DevKit "esp32-c6-devkitc-1_v1.2". In my test set-up I have an I2C bus such as: - Master --> different MCU than an ESP32 - Slave with address 0x41 --> different MCU than an ESP32 - Slave with address 0x42 --> ESP32 C6 devkit I am using the configuration described in the "do...
by vazquezfran
Fri Jun 07, 2024 10:24 am
Forum: IDEs for ESP-IDF
Topic: Debug connection through JTAG not always working in VSCode
Replies: 3
Views: 3003

Re: Debug connection through JTAG not always working in VSCode

Hello, I was initially trying to debug using the "type: "espidf" configuration to launch. After installing your Debug Adapter and changing to the "gdbtarget" type recommended in the "https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/DEBUGGING.md" guide, I managed to debug withou...
by vazquezfran
Thu Jun 06, 2024 1:52 pm
Forum: IDEs for ESP-IDF
Topic: Debug connection through JTAG not always working in VSCode
Replies: 3
Views: 3003

Debug connection through JTAG not always working in VSCode

Hello, I am working with a DevKit "esp32-c6-devkitc-1_v1.2" and I have installed in my PC the ESP-IDF v5.2.2 using the VSCode application to run it. Everything is set-up as default and I am working just with the "blink" example... I have also installed the drivers described in the "https://docs.espr...