Search found 2 matches

by almaz1c
Mon May 28, 2018 10:06 am
Forum: ESP-IDF
Topic: SPI Slave mode amount of received data
Replies: 1
Views: 3199

SPI Slave mode amount of received data

Hello! I use ESP32 as SPI Slave device. I use following code: memset(spi_recvbuf, 0x00, sizeof(spi_recvbuf)); ret1 = spi_slave_queue_trans(HSPI_HOST, &t, 1); ret2 = spi_slave_get_trans_result(HSPI_HOST, &t2, portMAX_DELAY); if(t2->trans_len > 8) spi_2_printf("spi rcv %d of %d bytes\r\n", t2->trans_l...
by almaz1c
Thu Mar 22, 2018 10:23 am
Forum: ESP-IDF
Topic: Cannot correctly jump to next line in some files when debug with openocd/gdb
Replies: 6
Views: 10253

Re: Cannot correctly jump to next line in some files when debug with openocd/gdb

Exactly same situation: movin to portYIELD_WITHIN_API during step by step debugging in Eclipse. Trying to run breaks debugging process. I thought it is watchdog so I disabled wachdogs in menuconfig by disabling Initialize Task Watchdog Timer on startup and Interrupt Watchdog . Unfortunately without ...